new off + wait 1 command

This commit is contained in:
tildearrow 2025-04-14 13:42:15 -05:00
parent b398108534
commit 4899513194
6 changed files with 47 additions and 12 deletions

View file

@ -113,10 +113,13 @@ class DivCSPlayer {
struct DivCSProgress {
int stage, count, total;
int optCurrent, optTotal;
DivCSProgress():
stage(0),
count(0),
total(0) {}
total(0),
optCurrent(0),
optTotal(0) {}
};
struct DivCSOptions {