ReplayPuzzleGame/Assets/Scripts/Replay/InputFrame.cs
qoralstmd6825 486fdbd829 리플레이 기능 추가
리플레이 기능 추가했습니다
2026-02-01 20:12:05 +09:00

16 lines
360 B
C#

using UnityEngine;
[System.Serializable]
public struct InputFrame
{
public float moveX;
public bool isJumpPressed;
public bool isHangPressed;
public InputFrame(float moveX, bool isJumpPressed, bool isHangPressed)
{
this.moveX = moveX;
this.isJumpPressed = isJumpPressed;
this.isHangPressed = isHangPressed;
}
}