feature/84-character-creation #88

Merged
rainote merged 60 commits from feature/84-character-creation into master 2023-11-17 07:29:21 +00:00
7 changed files with 7 additions and 6 deletions
Showing only changes of commit 4b7f0b6f00 - Show all commits

View file

@ -4,6 +4,7 @@ using Server.DB;
using Server.DB.Documents;
using Server.Services;
using Wonderking.Game.Data.Character;
using Wonderking.Game.Mapping;
using Wonderking.Packets.Incoming;
using Wonderking.Packets.Outgoing;
using Wonderking.Packets.Outgoing.Data;

View file

@ -8,8 +8,8 @@ using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Server.DB;
using Server.PacketHandlers;
using Server.Services;
using Wonderking.Game.Mapping;
var builder = Host.CreateApplicationBuilder();
#if DEBUG

View file

@ -1,6 +1,6 @@
using System.Text.Json.Serialization;
namespace Server.PacketHandlers;
namespace Wonderking.Game.Mapping;
public class CharacterStatsMappingConfiguration
{

View file

@ -1,6 +1,6 @@
using System.Text.Json.Serialization;
namespace Server.PacketHandlers;
namespace Wonderking.Game.Mapping;
public class DefaultCharacterMapping
{

View file

@ -1,6 +1,6 @@
using System.Text.Json.Serialization;
namespace Server.PacketHandlers;
namespace Wonderking.Game.Mapping;
public class DynamicStats
{

View file

@ -1,6 +1,6 @@
using System.Text.Json.Serialization;
namespace Server.PacketHandlers;
namespace Wonderking.Game.Mapping;
public class Item
{

View file

@ -1,7 +1,7 @@
using System.Text.Json.Serialization;
using Wonderking.Packets.Outgoing.Data;
namespace Server.PacketHandlers;
namespace Wonderking.Game.Mapping;
public class JobSpecificMapping
{