2025-11-25 08:19:33 -05:00
|
|
|
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;
|
|
|
|
|
|
2025-12-08 05:27:53 -05:00
|
|
|
public Dictionary<BreakthroughType, Color> outlineColorCollection;
|
2025-11-25 08:19:33 -05:00
|
|
|
}
|
|
|
|
|
}
|