コード例 #1
0
ファイル: Item.cs プロジェクト: cyendra/RavenParser
        static public List <Item> CloneList(Production production)
        {
            Item item = new Item(production);

            return(item.CloneList());
        }
コード例 #2
0
ファイル: Item.cs プロジェクト: cyendra/RavenParser
 public Item(Production production, int nowDot, int dotLimit)
 {
     product = production;
     maxDot  = dotLimit;
     dot     = nowDot;
 }