Exemplo n.º 1
0
        public Dictionary <int, Npc> Dict; // <id,npc>

        public NpcsDictionary(GothicPaths paths)
        {
            Dict = new Dictionary <int, Npc>
            {
                { 0, new Npc(0, "Will") }
            };
        }
Exemplo n.º 2
0
        public Parser(GothicPaths paths)
        {
            List       = new AIOutputList(paths);
            Dictionary = new NpcsDictionary(paths);
            Paths      = paths;
            InitiateWavNames();

            Parse();
        }
Exemplo n.º 3
0
 public Stats(AIOutputList list, NpcsDictionary dict, GothicPaths paths)
 {
     List       = list;
     Dictionary = dict;
     Paths      = paths;
 }
Exemplo n.º 4
0
 public AIOutputList(GothicPaths paths)
 {
     List         = new Dictionary <string, AIOutput>();
     DubPath      = paths.DubPath;
     AlphabetPath = paths.OutputAlphabet;
 }