forked from AbleOS/ableos
15 lines
168 B
Plaintext
15 lines
168 B
Plaintext
|
Element := struct {
|
||
|
width: int,
|
||
|
height: int,
|
||
|
|
||
|
x: u16,
|
||
|
y: u16,
|
||
|
|
||
|
id: int,
|
||
|
}
|
||
|
|
||
|
create_element := fn(): Element {
|
||
|
return Element.(0, 0, 0, 0, 0)
|
||
|
}
|
||
|
|