|
using Godot;
|
|
|
|
namespace DRPGActionGame.Player.States;
|
|
|
|
public partial class AttackState : State
|
|
{
|
|
private Player2 player;
|
|
|
|
public override void _Ready() {
|
|
player = GetParent<Player2>();
|
|
player.Playback.Travel("attack");
|
|
}
|
|
|
|
public override void _PhysicsProcess(double delta) {
|
|
|
|
}
|
|
} |