1
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user