Files
Nuake/Editor/resources/Scripts/Engine.wren
Antoine Pilote 19db72aa22 Added Wren scripting with module system 📚
Added Input pressed, released system
Added interface button support with wren onclick callback
2021-06-09 22:15:53 -04:00

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)
}