Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/BaseController.cs
2025-08-13 09:26:42 +08:00

15 lines
263 B
C#

namespace MoleMole
{
public abstract class BaseController
{
public uint ControllerType { get; private set; }
public BaseController(uint controllerType, BaseMonoEntity entity)
{
ControllerType = controllerType;
}
public abstract void Core();
}
}