static internal TerrainType ToTerrainType(this WCFTerrainType o)
        {
            TerrainType result = new TerrainType();

            result.Name = o.Name;

            return(result);
        }
Beispiel #2
0
        public WCFTerrainType ToWCFTerrainType()
        {
            WCFTerrainType result = new WCFTerrainType();

            result.Name = this.Name;

            return(result);
        }