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.
20 lines
668 B
20 lines
668 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Game {
|
|
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();
|
|
public static WinScore WinScore;
|
|
public static int CustomWinScore;
|
|
}
|
|
}
|
|
|