MiniGame-PushPush/Assets/Scripts/Data/PlayerInfo.cs
2023-10-04 20:20:04 +09:00

12 lines
238 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerInfo
{
public int STR { get; private set; }
public int RANGE { get; private set; }
public float SPEED { get; private set; }
}