Squishy.Network.Throttle.Throttle C# (CSharp) Method

Throttle() public method

public Throttle ( ThrottleType type ) : System
type ThrottleType
return System
        public Throttle(ThrottleType type, params Connection[] connections)
        {
            this.type = type;
            cons = new List<Connection>(connections.Length);
            foreach (Connection con in connections)
            {
                Add(con);
            }
        }