diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-24 17:28:38 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-24 17:28:38 +0200 |
| commit | 992e7fb9358a0d0a5d99ba119cf584477bda8d72 (patch) | |
| tree | 1cd753a73b560e60e0de353b9a1b7d0e15b002d6 /src/peripheral/inc | |
| parent | 5ac01ff845f37fadd1822f99149f1b610f510bba (diff) | |
| download | rts-992e7fb9358a0d0a5d99ba119cf584477bda8d72.tar.gz | |
peripheral: provide common actions
Whereas some actions are context-specific (e.g.: selecting a player),
some are context-independent and can be executed for all screens
(e.g.: exiting the game).
Diffstat (limited to 'src/peripheral/inc')
| -rw-r--r-- | src/peripheral/inc/peripheral.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/peripheral/inc/peripheral.h b/src/peripheral/inc/peripheral.h index c405c3c..956d965 100644 --- a/src/peripheral/inc/peripheral.h +++ b/src/peripheral/inc/peripheral.h @@ -25,6 +25,7 @@ union peripheral struct peripheral_common { enum peripheral_type type; + bool exit; } common; struct peripheral_pad |
