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,7 @@
using UnityEngine;
public class Character
{
public string CharacterCode { get; set; }
public string CharacterType { get; set; }
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: aab31f147ea95eb46a9e7f1a4e6fd694

View File

@@ -0,0 +1,8 @@
using System;
using UnityEngine;
[Serializable]
public class EnemyCharacter : Character
{
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 5a2fe40ca04ae7b47878dd39772fbe6a

View File

@@ -0,0 +1,8 @@
using System;
using UnityEngine;
[Serializable]
public class NpcCharacter : Character
{
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3a28fac40f4e9574fa811fba06a05308

View File

@@ -0,0 +1,6 @@
using UnityEngine;
public class PlayableCharacter : Character
{
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: cd53a3017915eb04789ae9ef3b4af682

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; }
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 40c16f8f39a76774e91f6f3ee55be2e3