2023-11-20 18:58:30 +00:00
|
|
|
// // Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
|
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
|
|
|
|
}
|