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

11 lines
185 B
C#
Raw Normal View History

2024-02-07 15:40:36 +00:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
2023-11-20 18:58:30 +00:00
2023-11-13 20:12:12 +00:00
namespace Wonderking.Game.Data.Character;
2023-08-14 21:05:53 +00:00
public enum Gender : byte
{
None = 0,
Male = 1,
Female = 2
}