mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-04 11:35:06 +03:00
Added Input pressed, released system Added interface button support with wren onclick callback
15 lines
163 B
Plaintext
15 lines
163 B
Plaintext
class Engine {
|
|
foreign static Log(msg)
|
|
}
|
|
|
|
class Vector3 {
|
|
construct new(x, y, z) {
|
|
_x = x
|
|
_y = y
|
|
_z = z
|
|
}
|
|
}
|
|
|
|
class Entity {
|
|
foreign GetComponent(type)
|
|
} |