mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 11:42:28 +00:00
20 lines
304 B
Odin
20 lines
304 B
Odin
#import "punity.odin" as pn
|
|
#import "test.odin" as t1
|
|
#import "sub/test.odin" as t2
|
|
|
|
main :: proc() {
|
|
t1.thing()
|
|
t2.thing()
|
|
|
|
// init :: proc(c: ^pn.Core) {
|
|
// }
|
|
|
|
// step :: proc(c: ^pn.Core) {
|
|
// if pn.key_down(pn.Key.ESCAPE) {
|
|
// c.running = false
|
|
// }
|
|
// }
|
|
|
|
// pn.run(init, step)
|
|
}
|