예제 #1
0
파일: ModTile.cs 프로젝트: jayands/tAPI-SDK
 public ModTile(TAPI.ModBase @base)
     : base(@base)
 {
 }
예제 #2
0
 public ModWorld(TAPI.ModBase @base)
     : base(@base)
 {
 }
예제 #3
0
 public ModProjectile(TAPI.ModBase @base, TAPI.Projectile p)
     : base(@base, p)
 {
 }
예제 #4
0
파일: ModBase.cs 프로젝트: jayands/tAPI-SDK
 /// <summary>
 /// Called when a mod calls CallInMod to this mod
 /// </summary>
 /// <param name="mod">The calling mod</param>
 /// <param name="arguments">The arguments the calling mod passed</param>
 /// <returns>The return value of the method</returns>
 public override object OnModCall(TAPI.ModBase mod, params object[] arguments)
 {
     return null; // return base.OnModCall(mod, arguments); returns a NotSupportedException
 }
예제 #5
0
파일: NPC.cs 프로젝트: jayands/tAPI-SDK
 public NPC(TAPI.ModBase @base, TAPI.NPC n)
     : base(@base, n)
 {
 }
예제 #6
0
파일: ModItem.cs 프로젝트: jayands/tAPI-SDK
 public ModItem(TAPI.ModBase @base, TAPI.Item i)
     : base(@base, i)
 {
 }
예제 #7
0
 public ModPlayer(TAPI.ModBase modBase)
     : base(modBase)
 {
 }