Added WL1 map parsing

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-13 16:04:14 +01:00
parent 8f67d8de44
commit 8ecc8e2fd4
11 changed files with 612 additions and 337 deletions

View File

@@ -0,0 +1,15 @@
import 'package:wolf_dart/classes/matrix.dart';
class WolfLevel {
final String name;
final int width; // Always 64 in standard Wolf3D
final int height; // Always 64
final Matrix<int> wallGrid;
WolfLevel({
required this.name,
required this.width,
required this.height,
required this.wallGrid,
});
}