16 lines
No EOL
141 B
C#
16 lines
No EOL
141 B
C#
using System;
|
|
using StereoKit;
|
|
|
|
interface IApp<T> {
|
|
void Step();
|
|
}
|
|
|
|
public class App {
|
|
public App() {
|
|
|
|
}
|
|
|
|
public void Step() {
|
|
|
|
}
|
|
} |