Ejemplo n.º 1
0
 /// <summary>
 /// Returns an NPC with a randomly generated type.
 /// </summary>
 public INPC Create()
 {
     return(new NPC(NPCGeneratorHelper.GenerateRandomNPCType()));
 }
Ejemplo n.º 2
0
        public NPCExState CreateExState()
        {
            NPCType npcType = NPCGeneratorHelper.GenerateRandomNPCType();

            return(new NPCExState(npcType));
        }