Skip to content

Commit 26e1f59

Browse files
authored
Merge pull request #9 from Coding-in-community/refactor-move-shared-folder
refactor: move pasta shared para dentro da pasta modules
2 parents 9f3609e + 5625839 commit 26e1f59

File tree

11 files changed

+10
-10
lines changed

11 files changed

+10
-10
lines changed

GlobalUsings.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
global using Godot;
2-
global using DungeonRoyale.Shared.Scripts.Extensions;
1+
global using Godot;

Modules/GameManagers/Scripts/TilesManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
22
using System.Diagnostics.CodeAnalysis;
33
using System.Runtime.CompilerServices;
4+
using DungeonRoyale.Modules.Shared.Scripts.Constants;
45
using DungeonRoyale.Modules.Tiles.Scripts;
5-
using DungeonRoyale.Shared.Scripts.Constants;
66

77
namespace DungeonRoyale.Modules.GameManagers.Scripts;
88

Modules/Player/Scripts/Player.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DungeonRoyale.Shared.Scripts.Constants;
1+
using DungeonRoyale.Modules.Shared.Scripts.Constants;
22

33
namespace DungeonRoyale.Modules.Player.Scripts;
44

File renamed without changes.
File renamed without changes.

Shared/Resources/font1.ttf.import renamed to Modules/Shared/Resources/font1.ttf.import

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
importer="font_data_dynamic"
44
type="FontFile"
55
uid="uid://4gd2xpuyufru"
6-
path="res://.godot/imported/font1.ttf-6e7ba9975eab5806005bb5a794c32bb2.fontdata"
6+
path="res://.godot/imported/font1.ttf-a1e3d7eaf2a3dd96c6c75edf31a94005.fontdata"
77

88
[deps]
99

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

1313
[params]
1414

@@ -23,6 +23,7 @@ allow_system_fallback=true
2323
force_autohinter=false
2424
hinting=1
2525
subpixel_positioning=4
26+
keep_rounding_remainders=true
2627
oversampling=0.0
2728
Fallbacks=null
2829
fallbacks=[]

Shared/Scripts/Constants/MappedInputs.cs renamed to Modules/Shared/Scripts/Constants/MappedInputs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DungeonRoyale.Shared.Scripts.Constants;
1+
namespace DungeonRoyale.Modules.Shared.Scripts.Constants;
22

33
public static class MappedInputs
44
{
File renamed without changes.

Shared/Scripts/Constants/TilesConstants.cs renamed to Modules/Shared/Scripts/Constants/TileConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DungeonRoyale.Shared.Scripts.Constants;
1+
namespace DungeonRoyale.Modules.Shared.Scripts.Constants;
22

33
public static class TileConstants
44
{
File renamed without changes.

0 commit comments

Comments
 (0)