internal SLLevel Clone()
        {
            SLLevel lvl = new SLLevel();
            for (int i = 0; i < this.Points.Count; ++i)
            {
                lvl.Points.Add(this.Points[i].Clone());
            }

            return lvl;
        }