mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-14 06:43:19 +08:00
7 lines
233 B
C
7 lines
233 B
C
typedef struct {
|
|
QFsm super; /* inherits QFsm */
|
|
uint8_t timeout; /* number of seconds till explosion */
|
|
uint8_t defuse; /* the secret defuse code */
|
|
uint8_t code; /* the current defuse code entry */
|
|
} Bomb;
|