Skip to content

Commit 84941d2

Browse files
committed
remove openloco from namespaces so that namespaces match folder hierarchy
1 parent 5ee09ce commit 84941d2

File tree

445 files changed

+2975
-2975
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

445 files changed

+2975
-2975
lines changed

Common/IEnumerableExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace OpenLoco.Common
1+
namespace Common
22
{
33
public static class IEnumerableExtensions
44
{

Common/Logging/ILogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Runtime.CompilerServices;
22

3-
namespace OpenLoco.Common.Logging
3+
namespace Common.Logging
44
{
55
public interface ILogger
66
{

Common/Logging/LogAddedEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace OpenLoco.Common.Logging
1+
namespace Common.Logging
22
{
33
public class LogAddedEventArgs(LogLine log) : EventArgs
44
{

Common/Logging/LogLevel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace OpenLoco.Common.Logging
1+
namespace Common.Logging
22
{
33
public enum LogLevel { Debug2, Debug, Info, Warning, Error }
44
}

Common/Logging/LogLine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace OpenLoco.Common.Logging
1+
namespace Common.Logging
22
{
33
public record LogLine(DateTime Time, LogLevel Level, string Caller, string Message)
44
{

Common/Logging/Logger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Concurrent;
22
using System.Diagnostics;
33

4-
namespace OpenLoco.Common.Logging
4+
namespace Common.Logging
55
{
66
public class Logger : ILogger
77
{

Common/Logging/ReflectionLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Reflection;
22
using System.Text;
33

4-
namespace OpenLoco.Common.Logging
4+
namespace Common.Logging
55
{
66
public static class ReflectionLogger
77
{

Common/VersionCheckBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text.Json.Serialization;
22

3-
namespace OpenLoco.Common
3+
namespace Common
44
{
55
public class VersionCheckBody
66
{

Dat/Data/Colour.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace OpenLoco.Dat.Data
1+
namespace Dat.Data
22
{
33
public enum Colour : uint8_t
44
{

Dat/Data/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace OpenLoco.Dat.Data
1+
namespace Dat.Data
22
{
33
public static class Constants
44
{

0 commit comments

Comments
 (0)