semi-idle-arpg/scripts/Player.cs
2024-10-20 16:44:08 -06:00

8 lines
107 B
C#

// player class
using Godot;
public class Player
{
public int playerLevel;
public int playerExp;
}