15 lines
493 B
C#
15 lines
493 B
C#
using System.Collections.Generic;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
namespace Cielonos.MainGame
|
|
{
|
|
[CreateAssetMenu(fileName = "BasePrefabsCollection", menuName = "Cielonos/MainGame/BasePrefabsCollection")]
|
|
public class BasePrefabsCollection : SerializedScriptableObject
|
|
{
|
|
public GameObject audioPoint;
|
|
public Dictionary<string, GameObject> hudTextCollection;
|
|
|
|
public Dictionary<BreakthroughType, Color> outlineColorCollection;
|
|
}
|
|
} |