Genesis Game Client Project Setup
This commit is contained in:
7
Assets/02_Scripts/DataModels/Character.cs
Normal file
7
Assets/02_Scripts/DataModels/Character.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class Character
|
||||
{
|
||||
public string CharacterCode { get; set; }
|
||||
public string CharacterType { get; set; }
|
||||
}
|
||||
2
Assets/02_Scripts/DataModels/Character.cs.meta
Normal file
2
Assets/02_Scripts/DataModels/Character.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aab31f147ea95eb46a9e7f1a4e6fd694
|
||||
8
Assets/02_Scripts/DataModels/EnemyCharacter.cs
Normal file
8
Assets/02_Scripts/DataModels/EnemyCharacter.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
[Serializable]
|
||||
public class EnemyCharacter : Character
|
||||
{
|
||||
|
||||
}
|
||||
2
Assets/02_Scripts/DataModels/EnemyCharacter.cs.meta
Normal file
2
Assets/02_Scripts/DataModels/EnemyCharacter.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a2fe40ca04ae7b47878dd39772fbe6a
|
||||
8
Assets/02_Scripts/DataModels/NpcCharacter.cs
Normal file
8
Assets/02_Scripts/DataModels/NpcCharacter.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
[Serializable]
|
||||
public class NpcCharacter : Character
|
||||
{
|
||||
|
||||
}
|
||||
2
Assets/02_Scripts/DataModels/NpcCharacter.cs.meta
Normal file
2
Assets/02_Scripts/DataModels/NpcCharacter.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3a28fac40f4e9574fa811fba06a05308
|
||||
6
Assets/02_Scripts/DataModels/PlayableCharacter.cs
Normal file
6
Assets/02_Scripts/DataModels/PlayableCharacter.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class PlayableCharacter : Character
|
||||
{
|
||||
|
||||
}
|
||||
2
Assets/02_Scripts/DataModels/PlayableCharacter.cs.meta
Normal file
2
Assets/02_Scripts/DataModels/PlayableCharacter.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cd53a3017915eb04789ae9ef3b4af682
|
||||
15
Assets/02_Scripts/DataModels/UserCharacter.cs
Normal file
15
Assets/02_Scripts/DataModels/UserCharacter.cs
Normal 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; }
|
||||
}
|
||||
2
Assets/02_Scripts/DataModels/UserCharacter.cs.meta
Normal file
2
Assets/02_Scripts/DataModels/UserCharacter.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 40c16f8f39a76774e91f6f3ee55be2e3
|
||||
Reference in New Issue
Block a user