Skip to content

Commit

Permalink
Refactor of Logic directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ben_singer committed Nov 16, 2024
1 parent d7ce38c commit 086a342
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions NetAF.Examples/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
using NetAF.Examples.Assets.Regions.Zelda.Rooms;
using NetAF.Extensions;
using NetAF.Logic;
using NetAF.Logic.Configuration;

namespace NetAF.Examples
{
Expand Down
1 change: 1 addition & 0 deletions NetAF.Tests/Logic/Game_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using NetAF.Utilities;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NetAF.Logic.Modes;
using NetAF.Logic.Configuration;

namespace NetAF.Tests.Logic
{
Expand Down
1 change: 1 addition & 0 deletions NetAF.Tests/TestGameConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using NetAF.Assets;
using NetAF.Interpretation;
using NetAF.Logic;
using NetAF.Logic.Configuration;
using NetAF.Rendering;
using NetAF.Rendering.FrameBuilders;

Expand Down
1 change: 1 addition & 0 deletions NetAF/Logic/AssetGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using NetAF.Assets.Characters;
using NetAF.Assets.Locations;
using NetAF.Logic.Callbacks;
using NetAF.Utilities;

namespace NetAF.Logic
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NetAF.Logic
namespace NetAF.Logic.Callbacks
{
/// <summary>
/// Represents the callback used for Game creation.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NetAF.Logic
namespace NetAF.Logic.Callbacks
{
/// <summary>
/// Represents the callback used for Game setup.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NetAF.Assets.Locations;

namespace NetAF.Logic
namespace NetAF.Logic.Callbacks
{
/// <summary>
/// Represents a callback for Overworld creation.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NetAF.Assets.Characters;

namespace NetAF.Logic
namespace NetAF.Logic.Callbacks
{
/// <summary>
/// Represents a callback for Player creation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using NetAF.Rendering.FrameBuilders;
using NetAF.Rendering;

namespace NetAF.Logic
namespace NetAF.Logic.Configuration
{
/// <summary>
/// Represents a configuration for a console game.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using NetAF.Rendering;
using NetAF.Rendering.FrameBuilders;

namespace NetAF.Logic
namespace NetAF.Logic.Configuration
{
/// <summary>
/// Represents a configuration for a game.
Expand Down
2 changes: 2 additions & 0 deletions NetAF/Logic/Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
using NetAF.Extensions;
using NetAF.Interpretation;
using NetAF.Logic.Arrangement;
using NetAF.Logic.Callbacks;
using NetAF.Logic.Configuration;
using NetAF.Logic.Modes;
using NetAF.Serialization;
using NetAF.Utilities;
Expand Down
1 change: 1 addition & 0 deletions docs/docfx/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ using NetAF.Assets;
using NetAF.Assets.Characters;
using NetAF.Assets.Locations;
using NetAF.Logic;
using NetAF.Logic.Coniguration;
using NetAF.Utilities;

namespace NetAF.GettingStarted
Expand Down

0 comments on commit 086a342

Please sign in to comment.