Summary description for MathFunctions.
示例#1
0
文件: Map.cs 项目: forksnd/Blam_BSP
 /// <summary>
 /// Initializes a new instance of the <see cref="Map"/> class.
 /// An internal constructor so this class must
 /// be made via static map.FromFile...
 /// </summary>
 /// <param name="fileName">Name of the file.</param>
 /// <remarks></remarks>
 internal Map(string fileName)
 {
     filePath   = fileName;
     Functions  = new MiscFunctions(this);
     ChunkTools = new ChunkAdder(this);
 }
示例#2
0
文件: Map.cs 项目: troymac1ure/Entity
 /// <summary>
 /// Initializes a new instance of the <see cref="Map"/> class.
 /// An internal constructor so this class must
 /// be made via static map.FromFile...
 /// </summary>
 /// <param name="fileName">Name of the file.</param>
 /// <remarks></remarks>
 internal Map(string fileName)
 {
     filePath = fileName;
     Functions = new MiscFunctions(this);
     ChunkTools = new ChunkAdder(this);
 }