Drop useless Main file

This commit is contained in:
3wc 2024-02-16 23:57:17 -03:00
parent c768073503
commit d6b042f2a4
3 changed files with 5 additions and 6 deletions

View File

@ -3,5 +3,5 @@
-lib heaps:git:https://github.com/HeapsIO/heaps.git
-lib tiledhx
-lib hxyarn
-main Main
-main Game
-lib domkit

View File

@ -196,4 +196,8 @@ class Game extends hxd.App {
root.scene = gs;
style.addObject(gs.getH2dObject());
}
static function main() {
new Game();
}
}

View File

@ -1,5 +0,0 @@
class Main {
static function main() {
new Game();
}
}