forked from Crockan/MercuryToolbox
18 lines
305 B
C#
18 lines
305 B
C#
namespace Rocket.Runtime
|
|
{
|
|
public sealed class RuntimeFeature
|
|
{
|
|
public static string RequiredMethod(string value)
|
|
{
|
|
return "compile:" + value;
|
|
}
|
|
}
|
|
|
|
public sealed class CompileOnlyType
|
|
{
|
|
public static void Touch()
|
|
{
|
|
}
|
|
}
|
|
}
|