mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
dbd3e1de44
Framework to let them handle proper input events. Not used yet.
11 lines
287 B
C
11 lines
287 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "c_cvars.h"
|
|
#include "d_protocol.h"
|
|
|
|
EXTERN_CVAR(Bool, sv_cheats)
|
|
|
|
void genericCheat(int player, uint8_t** stream, bool skip);
|
|
void changeMap(int player, uint8_t** stream, bool skip);
|
|
void endScreenJob(int player, uint8_t** stream, bool skip);
|