mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 09:25:35 +00:00
12 lines
No EOL
364 B
C#
12 lines
No EOL
364 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Components.FSM;
|
|
|
|
public abstract partial class ModuleBase<TKey, TType> : Node2D, IModule<TKey, TType>
|
|
where TKey : notnull
|
|
where TType : Node
|
|
{
|
|
public abstract void Init(IStateMachine<TKey, TType> machine);
|
|
public abstract void Process(double delta);
|
|
public abstract void PhysicsProcess(double delta);
|
|
} |