mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
19 lines
281 B
Swift
19 lines
281 B
Swift
//
|
|
// Spine_iOS_ExampleApp.swift
|
|
// Spine iOS Example
|
|
//
|
|
// Created by Denis Andrašec on 29.05.24.
|
|
//
|
|
|
|
import SpineCppLite
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct Spine_iOS_ExampleApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
SimpleAnimation()
|
|
}
|
|
}
|
|
}
|