11 lines
218 B
C#
11 lines
218 B
C#
using Godot;
|
|
|
|
namespace Newlon;
|
|
|
|
public partial class Settings : Node
|
|
{
|
|
public static double SFX = 1.0f;
|
|
public static double Music = 1.0f;
|
|
public static bool Splash = false;
|
|
public static bool SunClick = false;
|
|
}
|