Cppia interpreter for .NET. Intended for embedding into applications or games.
var runtime = new CppiaRuntime();
// Expose type from .NET
runtime.RegisterType(typeof(Console));
runtime.Load("path/to/file.cppia");
var method = runtime.GetClass("MyClass").GetMethod("MyMethod");
method.Invoke(null);
- Classes
- Enums
- Objects
- Array/Map
- Dynamic varibles
- Std library