Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kyorohiro/d703577579abf868f70c1d96e8eee1c3 to your computer and use it in GitHub Desktop.
Save kyorohiro/d703577579abf868f70c1d96e8eee1c3 to your computer and use it in GitHub Desktop.
//
//
// Flutter entry point
//
//
import 'package:flutter/widgets.dart';
import 'package:umiuni2d_flutter/core.dart';
import 'primitive_test.dart';
void main() {
GameWidget game = new GameWidget();
game.stage.root.addChild(new PrimitiveTest());
runApp(game);
game.start();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment