2024-02-07 16:40:36 +01:00
|
|
|
// Licensed to Timothy Schenk under 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
|
|
|
|
2025-01-16 14:30:40 +01:00
|
|
|
public enum Gender : byte {
|
2023-08-14 23:05:53 +02:00
|
|
|
None = 0,
|
|
|
|
Male = 1,
|
|
|
|
Female = 2
|
|
|
|
}
|