You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
670 B
21 lines
670 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
2 years ago
|
namespace Global {
|
||
2 years ago
|
public enum Type { RealOnline, RealOffline, Hybrid, AI, RealOnlineRanked }
|
||
2 years ago
|
public enum Difficulty { VeryEasy, Easy, Medium, Hard, VeryHard }
|
||
2 years ago
|
[Serializable]
|
||
|
public enum SpawnRate {Never, Few, Normal, Many}
|
||
|
[Serializable]
|
||
|
public enum Spawnable {NewBallTemporary, NewBallPermanent, Modification, Wormhole}
|
||
|
public enum WinScore {Default, Custom}
|
||
2 years ago
|
|
||
2 years ago
|
public struct RoomSettings {
|
||
2 years ago
|
public static Type Type;
|
||
|
public static Difficulty AIDifficulty;
|
||
2 years ago
|
public static readonly Dictionary<Spawnable, SpawnRate> SpawnRates = new();
|
||
2 years ago
|
public static WinScore WinScore;
|
||
|
public static int CustomWinScore;
|
||
2 years ago
|
}
|
||
2 years ago
|
}
|