mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
15 lines
263 B
C#
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();
|
|
}
|
|
}
|