Exemple #1
0
        static public List <Item> CloneList(Production production)
        {
            Item item = new Item(production);

            return(item.CloneList());
        }
Exemple #2
0
 public Item(Production production, int nowDot, int dotLimit)
 {
     product = production;
     maxDot  = dotLimit;
     dot     = nowDot;
 }