mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 01:14:59 +01:00
22 lines
360 B
C#
22 lines
360 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole.MainMenu
|
|
{
|
|
public class ScriptableConfigAtmosphere : ScriptableObject
|
|
{
|
|
[HideInInspector]
|
|
public float FrameTime;
|
|
|
|
public ConfigCloudStyle CloudStyle;
|
|
|
|
public ConfigBackground Background;
|
|
|
|
public ConfigIndoor Indoor;
|
|
|
|
public ScriptableConfigAtmosphere()
|
|
{
|
|
Background = new ConfigBackground();
|
|
}
|
|
}
|
|
}
|