7 lines
276 B
Ruby
7 lines
276 B
Ruby
class State
|
|
# This class holds state information
|
|
# for example the player inventory / items
|
|
# also their health, stealth, and memory bars
|
|
# it can handle mouse input for inventory management and item usage
|
|
# it can also handle keyboard input for quick item usage
|
|
end |