Decouple the engine from Flutter entirely

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-15 16:20:19 +01:00
parent 57d394e911
commit 20755e93ed
6 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import 'package:wolf_3d_entities/wolf_3d_entities.dart';
class EngineInput {
bool isMovingForward = false;
bool isMovingBackward = false;
bool isTurningLeft = false;
bool isTurningRight = false;
bool isInteracting = false;
bool isFiring = false;
WeaponType? requestedWeapon;
}