More work on command parser

This commit is contained in:
2021-02-02 16:29:07 -05:00
parent df3ec8ab99
commit 0721d29c72
10 changed files with 239 additions and 106 deletions

View File

@@ -30,19 +30,11 @@ public:
// Get the view map.
//
const AnimViewMap &get_view_map() { return view_map_; }
AnimViewMap &get_view_map() { return view_map_; }
// Get the menu of the specified tangible.
//
std::vector<std::string> get_menu(int64_t id);
// Select the specified menu item.
//
void choose_menu_item(int64_t id, const std::string &item);
// Advance the simulation clock. Called 1/sec.
//
void advance_clock();
};
#endif // VIEWER_HPP