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