Improved inheritance of inventory type interfaces

This commit is contained in:
bluefireoly
2020-10-02 19:08:49 +02:00
parent a75424b16d
commit 6ce92e5574

View File

@@ -41,14 +41,14 @@ class InventoryType<in T : ForInventory>(
interface ForInventory
interface ForInventoryOneByNine : ForInventory
interface ForInventoryTwoByNine : ForInventory
interface ForInventoryThreeByNine : ForInventory
interface ForInventoryFourByNine : ForInventory
interface ForInventoryFiveByNine : ForInventory
interface ForInventorySixByNine : ForInventory
interface ForInventoryThreeByThree : ForInventory
interface ForInventoryOneByFive : ForInventory
interface ForInventoryOneByNine : ForInventoryOneByFive
interface ForInventoryTwoByNine : ForInventoryOneByNine
interface ForInventoryThreeByNine : ForInventoryTwoByNine, ForInventoryThreeByThree
interface ForInventoryFourByNine : ForInventoryThreeByNine
interface ForInventoryFiveByNine : ForInventoryFourByNine
interface ForInventorySixByNine : ForInventoryFiveByNine
interface ForEveryInventory
: ForInventoryOneByNine, ForInventoryTwoByNine, ForInventoryThreeByNine,