ProjectDDD/Assets/_Datas/SLShared/SLUnity/UnitSytem/ZoneComponent.cs
2025-06-17 20:47:57 +09:00

11 lines
280 B (Stored with Git LFS)
C#

namespace Superlazy
{
public abstract class ZoneComponent
{
public abstract void Begin(Zone zone, SLEntity component);
public abstract void End(Zone zone, SLEntity component);
public abstract void Update(Zone zone, SLEntity component);
}
}