-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRounds.cs
40 lines (36 loc) · 1.29 KB
/
Rounds.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using BTD_Mod_Helper.Api.Bloons;
using BTD_Mod_Helper.Api.Enums;
using BTD_Mod_Helper;
using Il2CppAssets.Scripts.Models.Rounds;
using System;
using BTD_Mod_Helper.Extensions;
using ClassicRounds.Bloons;
using static Il2CppSystem.Linq.Expressions.Interpreter.CastInstruction.CastInstructionNoT;
using ClassicRounds.Rounds;
namespace ClassicRounds
{
#pragma warning disable 1591
#pragma warning disable IDE1006
//public class MidBtd3Rounds : EasyBtd3Rounds // Removed cus these slowdown loading time alot :/
//{
//public override string Icon => VanillaSprites.ModeSelectMediumBtn;
//public override string diff => "medium";
//public override bool AddToOverrideMenu => true;
//}
//public class HardBtd3Rounds : EasyBtd3Rounds
//{
//public override string diff => "hard";
//public override string Icon => VanillaSprites.ModeSelectHardBtn;
//}
//public class MidBtd4Rounds : EasyBtd4Rounds
//{
//public override string Icon => VanillaSprites.ModeSelectMediumBtn;
//public override string diff => "medium";
//public override bool AddToOverrideMenu => true;
//}
//public class HardBtd4Rounds : EasyBtd4Rounds
//{
//public override string diff => "hard";
//public override string Icon => VanillaSprites.ModeSelectHardBtn;
//}
}