18 lines
381 B
Dart
18 lines
381 B
Dart
import 'package:wolf_3d_data/wolf_3d_data.dart';
|
|
|
|
class WolfLevel {
|
|
final String name;
|
|
final int width; // Always 64 in standard Wolf3D
|
|
final int height; // Always 64
|
|
final Sprite wallGrid;
|
|
final Sprite objectGrid;
|
|
|
|
WolfLevel({
|
|
required this.name,
|
|
required this.width,
|
|
required this.height,
|
|
required this.wallGrid,
|
|
required this.objectGrid,
|
|
});
|
|
}
|