Upload from upload_mods.ps1

This commit is contained in:
Nathaniel Cosford
2025-06-04 16:44:53 +09:30
commit f1fbbe67bb
1722 changed files with 165268 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
public class TileEntityAoE : TileEntity
{
public TileEntityAoE(Chunk _chunk) : base(_chunk)
{
}
private TileEntityAoE(TileEntityAoE _other) : base(null)
{
Debug.Log("Creating new TileEntity");
localChunkPos = _other.localChunkPos;
}
public override void CopyFrom(TileEntity _other)
{
Debug.Log("Copy From TileEntity");
localChunkPos = _other.localChunkPos;
}
public override TileEntityType GetTileEntityType()
{
return (TileEntityType)RebirthUtilities.TileEntityRebirth.TileEntityAoE;
}
public override void Reset(FastTags<TagGroup.Global> questTags)
{
Debug.Log("Resetting TileEntity");
base.Reset(questTags);
setModified();
}
public override bool IsActive(World world)
{
return true;
}
public override TileEntity Clone()
{
Debug.Log("Cloning TileEntity");
return new TileEntityAoE(this);
}
}