forked from mirror/DotRecast
10 lines
182 B
C#
10 lines
182 B
C#
|
namespace DotRecast.Recast.Demo;
|
|||
|
|
|||
|
public static class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
var demo = new RecastDemo();
|
|||
|
demo.start();
|
|||
|
}
|
|||
|
}
|