コード例 #1
0
 /// <summary>
 /// Returns a node of the given type at an address in the moveset file.
 /// </summary>
 public T Parse <T>(VoidPtr address) where T : SakuraiEntryNode
 {
     return(SakuraiEntryNode.Parse <T>(this, null, address));
 }
コード例 #2
0
 /// <summary>
 /// Returns a node of the given type at an offset in the moveset file.
 /// </summary>
 public T Parse <T>(int offset) where T : SakuraiEntryNode
 {
     return(SakuraiEntryNode.Parse <T>(this, null, Address(offset)));
 }