mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-21 21:24:59 -07:00
eb424bb315
#import - imported entities will not get exported #load - loaded entities will get exported
16 lines
197 B
Odin
16 lines
197 B
Odin
#import "punity.odin" as pn
|
|
|
|
main :: proc() {
|
|
init :: proc(c: ^pn.Core) {
|
|
|
|
}
|
|
|
|
step :: proc(c: ^pn.Core) {
|
|
if pn.key_down(pn.Key.ESCAPE) {
|
|
c.running = false
|
|
}
|
|
}
|
|
|
|
// pn.run(init, step)
|
|
}
|