move examples to fix warning

This commit is contained in:
Luan Nico
2019-01-11 12:41:00 -02:00
parent dbfda31b35
commit eebd94178f
12 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import 'package:flame/components/tiled_component.dart';
import 'package:flame/game.dart';
import 'package:flutter/widgets.dart';
void main() {
var game = new TiledGame();
runApp(game.widget);
}
class TiledGame extends BaseGame {
TiledGame() {
add(new TiledComponent('map.tmx'));
}
}