oriels/app/App.cs
2022-05-02 07:49:05 -04:00

16 lines
No EOL
141 B
C#

using System;
using StereoKit;
interface IApp<T> {
void Step();
}
public class App {
public App() {
}
public void Step() {
}
}