Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.

Commit

Permalink
Relocate Files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander0542 committed Oct 28, 2021
1 parent 9cdd7f6 commit 67c2afb
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Avans.FlatGalaxy.Models.CelestialBodies;

namespace Avans.FlatGalaxy.Simulation.PathFinding
namespace Avans.FlatGalaxy.Simulation.Path
{
public class BreadthFirstPathFinder : PathFinder
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Avans.FlatGalaxy.Simulation.PathFinding.Data
namespace Avans.FlatGalaxy.Simulation.Path.Data
{
public class DijkstraEdge
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using Avans.FlatGalaxy.Models.CelestialBodies;

namespace Avans.FlatGalaxy.Simulation.PathFinding.Data
namespace Avans.FlatGalaxy.Simulation.Path.Data
{
public class DijkstraGraph
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using Avans.FlatGalaxy.Models.CelestialBodies;

namespace Avans.FlatGalaxy.Simulation.PathFinding.Data
namespace Avans.FlatGalaxy.Simulation.Path.Data
{
public class DijkstraNode
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Collections.Generic;
using System.Linq;
using Avans.FlatGalaxy.Models.CelestialBodies;
using Avans.FlatGalaxy.Simulation.PathFinding.Data;
using Avans.FlatGalaxy.Simulation.Path.Data;

namespace Avans.FlatGalaxy.Simulation.PathFinding
namespace Avans.FlatGalaxy.Simulation.Path
{
public class DijkstraPathFinder : PathFinder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using Avans.FlatGalaxy.Models.CelestialBodies;

namespace Avans.FlatGalaxy.Simulation.PathFinding
namespace Avans.FlatGalaxy.Simulation.Path
{
public abstract class PathFinder
{
Expand Down
2 changes: 1 addition & 1 deletion src/Avans.FlatGalaxy.Simulation/Simulator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
using Avans.FlatGalaxy.Models.CelestialBodies;
using Avans.FlatGalaxy.Simulation.Collision;
using Avans.FlatGalaxy.Simulation.Data;
using Avans.FlatGalaxy.Simulation.PathFinding;
using Avans.FlatGalaxy.Models.CelestialBodies.States;
using Avans.FlatGalaxy.Simulation.Bookmark;
using Avans.FlatGalaxy.Simulation.Bookmark.Common;
using Avans.FlatGalaxy.Simulation.Extensions;
using Avans.FlatGalaxy.Simulation.Path;

namespace Avans.FlatGalaxy.Simulation
{
Expand Down

0 comments on commit 67c2afb

Please sign in to comment.