using System; namespace ExtendedNetworking; [Flags] public enum RpcTarget { Broadcast = 1, Host = 1 << 1, Owner = 1 << 2, Admin = 1 << 3, }