mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 17:56:04 +08:00
13 lines
300 B
C#
13 lines
300 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Spine.Unity.Examples {
|
|
public class EquipAssetExample : ScriptableObject {
|
|
public EquipSystemExample.EquipType equipType;
|
|
public Sprite sprite;
|
|
public string description;
|
|
public int yourStats;
|
|
}
|
|
}
|