﻿using System;
using System.Collections.Generic;
using System.Xml;

namespace Oni.Level
{
    partial class LevelImporter
    {
        private void ReadSky(XmlReader xml, string basePath)
        {
            level.skyName = xml.ReadElementContentAsString("Sky", "");
        }
    }
}
