Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
global using Godot;
global using DungeonRoyale.Shared.Scripts.Extensions;
global using Godot;
2 changes: 1 addition & 1 deletion Modules/GameManagers/Scripts/TilesManager.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using DungeonRoyale.Modules.Shared.Scripts.Constants;
using DungeonRoyale.Modules.Tiles.Scripts;
using DungeonRoyale.Shared.Scripts.Constants;

namespace DungeonRoyale.Modules.GameManagers.Scripts;

Expand Down
2 changes: 1 addition & 1 deletion Modules/Player/Scripts/Player.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using DungeonRoyale.Shared.Scripts.Constants;
using DungeonRoyale.Modules.Shared.Scripts.Constants;

namespace DungeonRoyale.Modules.Player.Scripts;

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
importer="font_data_dynamic"
type="FontFile"
uid="uid://4gd2xpuyufru"
path="res://.godot/imported/font1.ttf-6e7ba9975eab5806005bb5a794c32bb2.fontdata"
path="res://.godot/imported/font1.ttf-a1e3d7eaf2a3dd96c6c75edf31a94005.fontdata"

[deps]

source_file="res://Shared/Resources/font1.ttf"
dest_files=["res://.godot/imported/font1.ttf-6e7ba9975eab5806005bb5a794c32bb2.fontdata"]
source_file="res://Modules/Shared/Resources/font1.ttf"
dest_files=["res://.godot/imported/font1.ttf-a1e3d7eaf2a3dd96c6c75edf31a94005.fontdata"]

[params]

Expand All @@ -23,6 +23,7 @@ allow_system_fallback=true
force_autohinter=false
hinting=1
subpixel_positioning=4
keep_rounding_remainders=true
oversampling=0.0
Fallbacks=null
fallbacks=[]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DungeonRoyale.Shared.Scripts.Constants;
namespace DungeonRoyale.Modules.Shared.Scripts.Constants;

public static class MappedInputs
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DungeonRoyale.Shared.Scripts.Constants;
namespace DungeonRoyale.Modules.Shared.Scripts.Constants;

public static class TileConstants
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace DungeonRoyale.Shared.Scripts.Extensions;
namespace DungeonRoyale.Modules.Shared.Scripts.Extensions;

public static class NodeExtensions
{
Expand Down
Loading