This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ItemTarget { | |
| public ItemTarget(string category, string subtype, string blueprintCategory, string blueprintSubtype, long destCount) | |
| { | |
| Type = new MyItemType(category, subtype); | |
| Blueprint = MyDefinitionId.Parse(blueprintCategory + "/" + blueprintSubtype); | |
| DestCount = destCount; | |
| } | |
| public ItemTarget(MyItemType type, long destCount) | |
| { |