9 lines
141 B
C#
9 lines
141 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Game
|
||
|
{
|
||
|
public class HeroConfigObject : ScriptableObject
|
||
|
{
|
||
|
public HeroConfig heroConfig;
|
||
|
}
|
||
|
}
|