Exemplo n.º 1
0
        public JSONStorableBool CreateToggle(string paramName, string label, bool startingValue, JSONStorableBool.SetBoolCallback callback, bool rightSide = false)
        {
            var storable = _builder.CreateToggle(paramName, label, startingValue, callback, rightSide);

            _objects.Add(storable);
            return(storable);
        }