11 lines
127 B
Haxe
11 lines
127 B
Haxe
import lib.HomeContext;
|
|
|
|
class Startup {
|
|
public static function main() {
|
|
var main = new HomeContext();
|
|
|
|
main.run();
|
|
}
|
|
}
|
|
|