16 lines
500 B
Text
16 lines
500 B
Text
/* ================================================= *\
|
|
* system.sun
|
|
*
|
|
* ssc standard include utility
|
|
* 2015-2016 arookas
|
|
\* ================================================= */
|
|
|
|
// ================================================= \\
|
|
// FLAGS
|
|
// ================================================= \\
|
|
|
|
builtin getSystemFlag(flag);
|
|
builtin setSystemFlag(flag, value);
|
|
|
|
function setOnSystemFlag(flag) { setSystemFlag(flag, true); }
|
|
function setOffSystemFlag(flag) { setSystemFlag(flag, false); }
|