Revise.Files.IFO.MapDataFile.MapDataFile C# (CSharp) Method

MapDataFile() public method

Initializes a new instance of the MapDataFile class.
public MapDataFile ( ) : System
return System
        public MapDataFile()
        {
            WaterPlanes = new List<MapWaterPlane>();
            Objects = new List<MapObject>();
            NPCs = new List<MapNPC>();
            Buildings = new List<MapBuilding>();
            Sounds = new List<MapSound>();
            Effects = new List<MapEffect>();
            Animations = new List<MapAnimation>();
            WaterPatches = new MapWaterPatches();
            MonsterSpawns = new List<MapMonsterSpawn>();
            WarpPoints = new List<MapWarpPoint>();
            CollisionObjects = new List<MapCollisionObject>();
            EventObjects = new List<MapEventObject>();

            Reset();
        }