everything constant
InitFlags
const everything
Initialise all flags to true
.
This will produce flags like SDL_INIT_EVERYTHING
.
Implementation
static const everything = InitFlags(
audio: true,
events: true,
gameController: true,
haptic: true,
joystick: true,
sensor: true,
timer: true,
video: true,
);