Beispiel #1
0
        private static void Create(int code, int hp, int atk, int def, bool initiative, int bornTime, string name,
                                   bool isBorn, bool infrared)
        {
            BuildDataModel model = new BuildDataModel(code, hp, atk, def, initiative, bornTime, name, isBorn, infrared);

            buildMap.Add(code, model);
        }
Beispiel #2
0
 private static void Create(int code, int hp, int atk, int def, bool initiative, int bornTime, string name,
     bool isBorn, bool infrared)
 {
     BuildDataModel model = new BuildDataModel(code, hp, atk, def, initiative, bornTime, name, isBorn, infrared);
     buildMap.Add(code, model);
 }