This commit is contained in:
CortexCore
2025-03-24 14:42:29 +08:00
parent ff7afe4133
commit 5fceb6f885
16 changed files with 153 additions and 16 deletions

View File

@@ -1,11 +1,38 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
namespace Net.Project.B.Faction
{
public enum FactionTypes
{
public interface IFactionType:IWorldNode{
}
[Serializable]
public class Human:IFactionType{}
[Serializable]
public class Player:Human
{
}
[Serializable]
public class Zombie:IFactionType
{
}
[Serializable]
public class Bandit:Human
{
}
[Serializable]
public class Survivor:Human
{
}
}