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);
 }