#ifndef HIVE_MIND_CORE_USER_STATE_H_ #define HIVE_MIND_CORE_USER_STATE_H_ #include #include #include #include "util/common.h" struct UserState { bool is_creator = false; Arc user; std::string error_msg; std::queue> card_pack_queue; std::vector> selected_card; std::chrono::time_point time_last_updated; }; #endif