18 строки
404 B
C#
18 строки
404 B
C#
using MonoManagedToNative.Generators;
|
|
|
|
namespace MonoManagedToNative.Tests
|
|
{
|
|
public class BasicTestsGenerator : TestsGenerator
|
|
{
|
|
public BasicTestsGenerator(GeneratorKind kind)
|
|
: base("Basic", kind)
|
|
{
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
new BasicTestsGenerator(GeneratorKind.C).Generate();
|
|
}
|
|
}
|
|
}
|