12345678910111213 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- [CreateAssetMenu(fileName = "Data", menuName = "ScriptableObjects/CharacterData", order = 1)]
- public class CharacterDataSO : ScriptableObject
- {
- public string jsonCharData;
- public string charName;
-
- }
|