GetGoreSlot() 공개 정적인 메소드

public static GetGoreSlot ( string texture ) : int
texture string
리턴 int
예제 #1
0
 public int GetGoreSlot(string name)
 {
     return(ModGore.GetGoreSlot(FileName(name)));
 }
예제 #2
0
파일: Mod.cs 프로젝트: Tea-Mod-Loader/Tea
 /// <summary>
 /// Shorthand for calling ModGore.GetGoreSlot(this.Name + '/' + name).
 /// </summary>
 /// <param name="name">The name.</param>
 /// <returns></returns>
 public int GetGoreSlot(string name) => ModGore.GetGoreSlot(Name + '/' + name);