smart-interactive-display/Assets/GadGame/Scripts/Network/ReceiverData.cs

21 lines
366 B
C#
Raw Normal View History

2024-04-11 01:55:35 -07:00
namespace GadGame.Network
{
public enum Genders
{
Male,
Female,
}
[System.Serializable]
public struct ReceiverData
{
public bool PassBy;
public bool Viewed;
public bool Engage;
public bool Ready;
public Genders Gender;
public int AgeMin;
public int AgeMax;
}
}