mmorpg2d/Assets/Script/CharacterDataSO.cs
2024-11-10 23:39:20 +05:30

14 lines
293 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;
}