From 91b91d9a4f7eaf5b930f02443332c867c7dce930 Mon Sep 17 00:00:00 2001 From: spatialfree Date: Thu, 21 Nov 2024 15:41:42 -0500 Subject: [PATCH] integrate vcam into core application loop --- src/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Program.cs b/src/Program.cs index 4195ecb..93755b5 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -37,6 +37,8 @@ class Program Mono.Init(); Arts.Init(); + VCam.Init(); + // Core application loop SK.Run(() => { @@ -59,6 +61,8 @@ class Program } Arts.Frame(); + + VCam.Frame(); }); } } \ No newline at end of file