mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-15 06:53:47 +00:00
Actor stub
This commit is contained in:
parent
237a59055b
commit
a1bbe63b66
4 changed files with 73 additions and 1 deletions
11
Scripts/Components/Actors/MovementHandler.cs
Normal file
11
Scripts/Components/Actors/MovementHandler.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using Godot;
|
||||
|
||||
public abstract partial class MovementHandler : Node2D
|
||||
{
|
||||
public Vector2 MovementDirection { get; set; }
|
||||
|
||||
public abstract void Init(Actor parent);
|
||||
|
||||
public abstract void Move(double delta);
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue