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.
25 lines
867 B
25 lines
867 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Global {
|
|
public enum Type { RealOnline, RealOffline, Hybrid, AI, RealOnlineRanked }
|
|
public enum Difficulty { VeryEasy, Easy, Medium, Hard, VeryHard }
|
|
[Serializable]
|
|
public enum SpawnRate {Never, Few, Normal, Many}
|
|
[Serializable]
|
|
public enum Spawnable {NewBallTemporary, NewBallPermanent, Modification, Wormhole}
|
|
public enum WinScore {Default, Custom}
|
|
|
|
public struct RoomSettings {
|
|
public static Type Type;
|
|
public static Difficulty AIDifficulty;
|
|
public static readonly Dictionary<Spawnable, SpawnRate> SpawnRates = new() {
|
|
{Spawnable.NewBallTemporary, SpawnRate.Normal},
|
|
{Spawnable.NewBallPermanent, SpawnRate.Normal},
|
|
{Spawnable.Modification, SpawnRate.Normal},
|
|
{Spawnable.Wormhole, SpawnRate.Normal}
|
|
};
|
|
public static WinScore WinScore;
|
|
public static int CustomWinScore;
|
|
}
|
|
}
|
|
|