mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +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();
|
|
}
|
|
}
|
|
}
|
|
} |