Items can be dropped/equipped/used

This commit is contained in:
Yohann D'ANELLO
2020-12-04 16:53:27 +01:00
parent 0da7486750
commit c7545e53f7
4 changed files with 48 additions and 10 deletions

View File

@ -28,6 +28,9 @@ class Settings:
self.KEY_RIGHT_SECONDARY = ['KEY_RIGHT', 'Secondary key to move right']
self.KEY_ENTER = ['\n', 'Key to validate a menu']
self.KEY_INVENTORY = ['i', 'Key used to open the inventory']
self.KEY_USE = ['u', 'Key used to use an item in the inventory']
self.KEY_EQUIP = ['e', 'Key used to equip an item in the inventory']
self.KEY_DROP = ['d', 'Key used to drop an item in the inventory']
self.TEXTURE_PACK = ['ascii', 'Texture pack']
self.LOCALE = [locale.getlocale()[0][:2], 'Language']