11 lines
334 B
C#
11 lines
334 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace BrewMonster.Scripts.Common.DataProcess.ScriptableObjects
|
|
{
|
|
[CreateAssetMenu(fileName = "WorldTargetSO", menuName = "BrewMonster/WorldTargetSO")]
|
|
public class WorldTargetSO : ScriptableObject
|
|
{
|
|
public List<TRANS_TARGET> worldTargets;
|
|
}
|
|
} |