Ejemplo n.º 1
0
        public void SetOptionRange(string title, bool value)
        {
            RulesetLayout layout = m_Layout.FindByTitle(title);

            if (layout == null)
            {
                return;
            }

            for (int i = 0; i < layout.TotalLength; ++i)
            {
                m_Options[i + layout.Offset] = value;
            }

            m_Changed = true;
        }