SupaLidlGame/State/NPC/TelegraphState.cs

20 lines
330 B
C#
Raw Permalink Normal View History

2023-07-13 23:46:58 -07:00
using Godot;
namespace SupaLidlGame.State.NPC;
public partial class NPCTelegraphState : NPCState
{
[Export]
public double Duration { get; set; }
public override NPCState Enter(IState<NPCState> previousState)
{
return null;
}
public override void Exit(IState<NPCState> nextState)
{
}
}