mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
828095afd1
TODO: Define better name mangling rules and allow for explicit name overload
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)
|
|
}
|