integrate rig in program sequence

This commit is contained in:
ethan merchant 2024-11-04 04:05:58 -05:00
parent 71f1da9c70
commit bfe939b2f7
3 changed files with 15 additions and 1 deletions

3
.gitignore vendored
View file

@ -7,3 +7,6 @@ bin/
obj/
Raw/
anchors.txt

View file

@ -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

View file

@ -5,4 +5,13 @@ namespace snake;
static class Rig
{
public static void Init()
{
}
public static void Frame()
{
}
}