mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
Added Input pressed, released system Added interface button support with wren onclick callback
18 lines
245 B
Plaintext
18 lines
245 B
Plaintext
import "Scripts/Engine" for Engine
|
|
class Test {
|
|
init() {
|
|
System.print("hello init")
|
|
}
|
|
|
|
update(t) {
|
|
System.print("hello update %(t)")
|
|
}
|
|
|
|
exit() {
|
|
System.print("hello exit ")
|
|
}
|
|
|
|
static hello() {
|
|
Engine.Log("Hello from foreign")
|
|
}
|
|
} |