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(); + } + } +}