mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-28 07:03:10 +08:00
8 lines
184 B
C
8 lines
184 B
C
void QBomb_ctor(QBomb * const me) {
|
|
QFsm_ctor(&me->super, Q_STATE_CAST(&QBomb_initial)); /* superclass ctor */
|
|
|
|
me->timeout = 0U;
|
|
me->defuse = 0U;
|
|
me->code = 0U;
|
|
}
|