mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 22:34:36 +00:00
13 lines
279 B
Haxe
13 lines
279 B
Haxe
package util.macro;
|
|
|
|
class MacroUtil
|
|
{
|
|
public static macro function getDefine(key:String, defaultValue:String = null):haxe.macro.Expr
|
|
{
|
|
var value = haxe.macro.Context.definedValue(key);
|
|
if (value == null)
|
|
value = defaultValue;
|
|
return macro $v{value};
|
|
}
|
|
}
|