3D_RPG_Action_Game/Player/States/JumpState.cs

14 lines
247 B
C#

using Godot;
namespace DRPGActionGame.Player.States;
public partial class JumpState : State
{
public override void _PhysicsProcess(double delta) {
}
public override void Exit() {
GD.Print("Exit Jump State");
}
}