mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
13 lines
356 B
Beef
13 lines
356 B
Beef
namespace System
|
|
{
|
|
extension Runtime
|
|
{
|
|
[NoReturn, Warn("The method is not implemented.")]
|
|
#unwarn
|
|
public static void NotImplemented(String filePath = Compiler.CallerFilePath, int line = Compiler.CallerLineNum)
|
|
{
|
|
String failStr = scope .()..AppendF("Not Implemented at line {} in {}", line, filePath);
|
|
Internal.FatalError(failStr, 1);
|
|
}
|
|
}
|
|
} |