Example #1
0
        public void Load(string filePath)
        {
            if (_cwMap == null)
            {
                _cwMap = new Classicworld(filePath);
            }

            _currentFilePath = filePath;
            _cwMap.Load();
        }
Example #2
0
 public bool Reload()
 {
     _cwMap = new Classicworld(_currentFilePath);
     _cwMap.Load();
     return(true);
 }