continuity/Wonderking/Game/Data/Character/Gender.cs

11 lines
198 B
C#
Raw Normal View History

2023-11-21 21:37:50 +01:00
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
2023-11-20 19:58:30 +01:00
2023-11-13 21:12:12 +01:00
namespace Wonderking.Game.Data.Character;
2023-08-14 23:05:53 +02:00
public enum Gender : byte
{
None = 0,
Male = 1,
Female = 2
}