From c5808f7a2f24e452ac64cc59aaf8264ee5d02812 Mon Sep 17 00:00:00 2001 From: DanzaG <360danza@gmail.com> Date: Fri, 12 Nov 2021 14:33:32 +0000 Subject: [PATCH] #240 #241 #242 #243 #244 #245 #246 - Class skeletons. --- .../Randomizers/TR3/TR3EnemyRandomizer.cs | 16 ++++++++++++++++ .../Randomizers/TR3/TR3EnvironmentRandomizer.cs | 16 ++++++++++++++++ .../Randomizers/TR3/TR3GameStringRandomizer.cs | 16 ++++++++++++++++ .../Randomizers/TR3/TR3ItemRandomizer.cs | 16 ++++++++++++++++ .../Randomizers/TR3/TR3NightModeRandomizer.cs | 16 ++++++++++++++++ .../TR3/TR3StartPositionRandomizer.cs | 16 ++++++++++++++++ .../Randomizers/TR3/TR3TextureRandomizer.cs | 16 ++++++++++++++++ 7 files changed, 112 insertions(+) create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3EnemyRandomizer.cs create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3EnvironmentRandomizer.cs create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3GameStringRandomizer.cs create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3ItemRandomizer.cs create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3NightModeRandomizer.cs create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3StartPositionRandomizer.cs create mode 100644 TRRandomizerCore/Randomizers/TR3/TR3TextureRandomizer.cs diff --git a/TRRandomizerCore/Randomizers/TR3/TR3EnemyRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3EnemyRandomizer.cs new file mode 100644 index 000000000..30ace9830 --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3EnemyRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers.TR3 +{ + public class TR3EnemyRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +} diff --git a/TRRandomizerCore/Randomizers/TR3/TR3EnvironmentRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3EnvironmentRandomizer.cs new file mode 100644 index 000000000..f4f4aacf6 --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3EnvironmentRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers.TR3 +{ + public class TR3EnvironmentRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +} diff --git a/TRRandomizerCore/Randomizers/TR3/TR3GameStringRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3GameStringRandomizer.cs new file mode 100644 index 000000000..11a6f280f --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3GameStringRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers.TR3 +{ + public class TR3GameStringRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +} diff --git a/TRRandomizerCore/Randomizers/TR3/TR3ItemRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3ItemRandomizer.cs new file mode 100644 index 000000000..0cee1ee23 --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3ItemRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers.TR3 +{ + public class TR3ItemRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +} diff --git a/TRRandomizerCore/Randomizers/TR3/TR3NightModeRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3NightModeRandomizer.cs new file mode 100644 index 000000000..3ff8b2fcd --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3NightModeRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers.TR3 +{ + public class TR3NightModeRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +} diff --git a/TRRandomizerCore/Randomizers/TR3/TR3StartPositionRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3StartPositionRandomizer.cs new file mode 100644 index 000000000..88a38d2e1 --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3StartPositionRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers +{ + public class TR3StartPositionRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +} diff --git a/TRRandomizerCore/Randomizers/TR3/TR3TextureRandomizer.cs b/TRRandomizerCore/Randomizers/TR3/TR3TextureRandomizer.cs new file mode 100644 index 000000000..90e2223e7 --- /dev/null +++ b/TRRandomizerCore/Randomizers/TR3/TR3TextureRandomizer.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRRandomizerCore.Randomizers +{ + public class TR3TextureRandomizer : BaseTR3Randomizer + { + public override void Randomize(int seed) + { + throw new NotImplementedException(); + } + } +}