mmorpg2d/Assets/Script/CharacterDataSO.cs
2025-01-06 19:41:29 +05:30

14 lines
306 B
C#

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;
}