Skip to content

Commit 0df815d

Browse files
committed
Rename more namespaces
1 parent 4bf2fe7 commit 0df815d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Entity/Mover/PredatorPreyMover.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using KentingStation.Common.Util;
66
using KentingStation.Interface;
77

8-
namespace KentingStation.Common;
8+
namespace KentingStation.Entity.Mover;
99

1010
public partial class PredatorPreyMover : Area2D
1111
{

Entity/Mover/RandomOneAxisMover.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using KentingStation.Common.Util;
22
using KentingStation.Interface;
33

4-
namespace Kenting.Common;
4+
namespace KentingStation.Entity.Mover;
55

66
public class RandomOneAxisMover : IOneAxisMover
77
{

Entity/Mover/SkittishMover.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using KentingStation.Common;
44
using KentingStation.Interface;
55

6-
namespace Kenting.Common;
6+
namespace KentingStation.Entity.Mover;
77

88
public class SkittishMover : ITwoAxisMover
99
{

Entity/PredatorPreyEntity.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
using System.Collections.Frozen;
33
using System.Collections.Generic;
44
using Godot;
5-
using Kenting.Common;
65
using KentingStation.Common;
76
using KentingStation.Common.Util;
7+
using KentingStation.Entity.Mover;
88
using KentingStation.Exception;
99
using KentingStation.Interface;
10+
using PredatorPreyMover = KentingStation.Entity.Mover.PredatorPreyMover;
1011

1112
namespace KentingStation.Entity;
1213

0 commit comments

Comments
 (0)