WorldBuildData constructor

WorldBuildData({
  1. required WorldMap map,
  2. List<GameComponent>? components,
  3. List<GameComponent>? mapChildren,
})

Implementation

WorldBuildData({
  required this.map,
  this.components,
  this.mapChildren,
});