-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
19 lines (16 loc) · 804 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "screen.hpp"
#include "game.hpp"
#include "util.hpp"
Game game;
int main()
{
// TODO: grid flag to forbid putting items in them, i.e. crafting_result
// TODO: double-click to collect items across several grids (i.e. inventory and crafting_grid)
// TODO: if you do triple-click (i.e. want to collect all items and immediately put selected item back into slot, it doesn't put it, you have to wait since double-click)
// TODO: shift-click for crafting_grid and crafting_result to quickly transfer them to inventory
// TODO: make add_item() handle if inventory has that item type already, in that case add to that slot
// **TODO: change Makefile so that changing header triggers rebuilding
// *TODO: recipe book
// *TODO: 2nd tab for lab-like tree growing
screen.main_loop();
}