コード例 #1
0
ファイル: TextureNet.cs プロジェクト: CommanderWayan/HexaTest
 /// <summary>
 /// Gets a List with all possible adjacent Textures
 /// </summary>
 /// <param name="Node">The Texture node to search for</param>
 /// <returns>a list with all adjacent possible Texturename WITHOUT the filename extension</returns>
 public List<string> getConnectionsForNode(TextureNode Node)
 {
     return null; // hier natürlich die liste rein ;)
 }
コード例 #2
0
ファイル: TextureNet.cs プロジェクト: CommanderWayan/HexaTest
 public void setConnection(ref TextureNode NodeToConnectTo,Helpers.Neighbors Direction)
 {
     _connections[(int)Direction].Add(NodeToConnectTo);
 }