diff --git a/.gitignore b/.gitignore index edd93b6..5104a58 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,7 @@ ovr-platform-util bin/ obj/ -Raw/ \ No newline at end of file +Raw/ + + +anchors.txt \ No newline at end of file diff --git a/src/Program.cs b/src/Program.cs index 8413b20..48023fd 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -31,12 +31,14 @@ class Program // World.OcclusionEnabled = true; // Device.DisplayBlend = DisplayBlend.Blend; + Rig.Init(); Mono.Init(); Arts.Init(); // Core application loop SK.Run(() => { + Rig.Frame(); Mono.Frame(); // stepper diff --git a/src/Rig.cs b/src/Rig.cs index 4aeff77..fa3d910 100644 --- a/src/Rig.cs +++ b/src/Rig.cs @@ -5,4 +5,13 @@ namespace snake; static class Rig { + public static void Init() + { + + } + + public static void Frame() + { + + } } \ No newline at end of file