Moved everything to a monorepo and fixed the CLI app rendering

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-16 15:09:37 +01:00
parent ede2c3fa31
commit 9410916b57
53 changed files with 91 additions and 36 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
import 'package:wolf_3d_flutter/wolf_3d.dart';
import 'package:wolf_3d_gui/screens/game_select_screen.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Wolf3d.I.init();
runApp(
const MaterialApp(
home: GameSelectScreen(),
),
);
}