using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// Types of entities. Every entity type has its own prefab, see
/// .
///
public enum EntityType {
///
/// Player character.
///
PC,
///
/// Non player character.
///
NPC
}