mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-02-04 07:13:16 +08:00
8 lines
229 B
C
8 lines
229 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;
|