Created
February 7, 2018 14:06
-
-
Save Folling/ed35604f12b0b712db5f43915841e13c to your computer and use it in GitHub Desktop.
This file contains 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
private bool InventoryContains(Item i){ | |
return inventory.FindIndex(item => item.id == i.id) >= 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment