Skip to content

Commit 38d0d21

Browse files
committed
rework CharacterCreationWindow AscensionGameDev#2534
1 parent 04f3c0d commit 38d0d21

File tree

11 files changed

+639
-482
lines changed

11 files changed

+639
-482
lines changed

Intersect (Core)/Network/Packets/Server/CharacterCreationPacket.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,16 @@ namespace Intersect.Network.Packets.Server;
55
[MessagePackObject]
66
public partial class CharacterCreationPacket : IntersectPacket
77
{
8+
//Parameterless Constructor for MessagePack
9+
public CharacterCreationPacket()
10+
{
11+
}
812

13+
public CharacterCreationPacket(bool force)
14+
{
15+
Force = force;
16+
}
17+
18+
[Key(0)]
19+
public bool Force { get; set; }
920
}

0 commit comments

Comments
 (0)