mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-01 05:09:07 +08:00
12 lines
221 B
C#
12 lines
221 B
C#
|
|
using System;
|
|
|
|
namespace Spine {
|
|
static class ExampleProgram {
|
|
static void Main (string[] args) {
|
|
using (Example game = new Example()) {
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|
|
} |