Genesis Game Client Project Setup

This commit is contained in:
2026-03-13 12:43:28 +09:00
commit af885151b3
832 changed files with 630533 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using UnityEngine;
[Serializable]
public class UserCharacter : PlayableCharacter
{
public int UserCharacterNo { get; set; }
public int UserNo { get; set; }
public int Lv { get; set; }
public int StrStat { get; set; }
public int IntStat { get; set; }
public int MaxHp { get; set; }
public int MaxMp { get; set; }
public bool DefaultControl { get; set; }
}