Skip to content

Commit

Permalink
Merge pull request #9 from Coding-in-community/refactor-move-shared-f…
Browse files Browse the repository at this point in the history
…older

refactor: move pasta shared para dentro da pasta modules
  • Loading branch information
patrickreisx authored Jan 27, 2025
2 parents 9f3609e + 5625839 commit 26e1f59
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
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.
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

0 comments on commit 26e1f59

Please sign in to comment.