14 lines
276 B
C
14 lines
276 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "script/module/modulebase.h"
|
|
|
|
static void modulePlatformLinux(void) {
|
|
moduleBaseEval("var LINUX = true;\n");
|
|
}
|