C# Class Revise.Files.IFO.MapDataFile

Provides the ability to create, open and save IFO files for map data.
Inheritance: FileLoader
Show file Open project: osROSE/UnityRose Class Usage Examples

Public Methods

Method Description
Clear ( ) : void

Removes all light objects.

Load ( Stream stream ) : void

Loads the file from the specified stream.

MapDataFile ( ) : System

Initializes a new instance of the MapDataFile class.

Reset ( ) : void

Resets properties to their default values.

Save ( Stream stream ) : void

Saves the file to the specified stream.

Method Details

Clear() public method

Removes all light objects.
public Clear ( ) : void
return void

Load() public method

Loads the file from the specified stream.
public Load ( Stream stream ) : void
stream Stream The stream to read from.
return void

MapDataFile() public method

Initializes a new instance of the MapDataFile class.
public MapDataFile ( ) : System
return System

Reset() public method

Resets properties to their default values.
public Reset ( ) : void
return void

Save() public method

Saves the file to the specified stream.
public Save ( Stream stream ) : void
stream Stream The stream to save to.
return void