Skip to content

Commit

Permalink
Move SET stuff back to Placement namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperbx committed Aug 11, 2024
1 parent f74b0e6 commit 583bf13
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Marathon.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
using Marathon.Formats.Audio;
using Marathon.Formats.Event;
using Marathon.Formats.Mesh;
using Marathon.Formats.Object;
using Marathon.Formats.Package;
using Marathon.Formats.Particle;
using Marathon.Formats.Placement;
using Marathon.Formats.Save;
using Marathon.Formats.Script;
using Marathon.Formats.Script.Lua;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Marathon.Formats.Object
namespace Marathon.Formats.Placement
{
/// <summary>
/// File base for the *.prop format.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Marathon.Exceptions;
using Marathon.Helpers;

namespace Marathon.Formats.Object
namespace Marathon.Formats.Placement
{
/// <summary>
/// File base for the *.set format.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Marathon.Formats.Object
namespace Marathon.Formats.Placement
{
[JsonConverter(typeof(StringEnumConverter))]
public enum SetDataType
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ See the [Building](https://github.com/hyperbx/Marathon/wiki/Building) page on th
- [Ninja (`*.xna; *.xnd; *.xne; *.xnf; *.xng; *.xni; *.xnm; *.xno; *.xnv`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Mesh/Ninja/NinjaNext.cs) reading and writing
- [Path Spline (`*.path`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Mesh/PathSpline.cs) reading and writing
- [Reflection Zone (`*.rab`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Mesh/ReflectionZone.cs) reading and writing
- Object
- [Set Data (`*.set`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Object/SetData.cs) reading and writing
- [Property Database (`*.prop`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Object/PropertyDatabase.cs) reading and writing
- Package
- [Asset Package (`*.pkg`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Package/AssetPackage.cs) reading and writing
- [Common Package (`Common.bin`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Package/CommonPackage.cs) reading and writing
Expand All @@ -50,6 +47,9 @@ See the [Building](https://github.com/hyperbx/Marathon/wiki/Building) page on th
- [Particle Effect Bank (`*.peb`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Particle/ParticleEffectBank.cs) reading and writing
- [Particle Generation System (`*.pgs`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Particle/ParticleGenerationSystem.cs) reading and writing
- [Particle Texture Bank (`*.ptb`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Particle/ParticleTextureBank.cs) reading and writing
- Placement
- [Set Data (`*.set`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Object/SetData.cs) reading and writing
- [Property Database (`*.prop`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Object/PropertyDatabase.cs) reading and writing
- Save
- [Save Data (`SonicNextSaveData.bin`)](https://github.com/hyperbx/Marathon/blob/master/Marathon/Formats/Save/SonicNextSaveData.cs) reading and writing
- Script
Expand Down

0 comments on commit 583bf13

Please sign in to comment.