Changed isNotClosing to isOpen because if isOpen is false inside of any of the using methods, it throws an exception.

This commit is contained in:
kohlerpop1
2024-04-10 11:54:35 -04:00
parent 22e11a7822
commit 67948b14cc
8 changed files with 146 additions and 125 deletions

View File

@@ -35,6 +35,14 @@ enum LinkmicApplierSortSetting {
LINKMIC_APPLIER_SORT_SETTING_BY_GIFT_SCORE = 1;
}
enum LinkMicBattleStatus {
BATTLE_ARMY_UNKNOWN = 0;
ARMY_ONGOING = 1;
ARMY_FINISHED = 2;
BATTLE_ONGOING = 4;
BATTLE_FINISHED = 5;
}
enum HashtagNamespace {
GLOBAL = 0;
GAMING = 1;