Subversion Repositories AndroidProjects

Rev

Rev 1307 | Rev 1432 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using BurutaruEditor.file.elements;

namespace BurutaruEditor.file
{
    public class LevelUtil
    {
        private LevelUtil() { }

        public static bool LoadLevel(String filename, List<LevelElement> list)
        {
            return true;
        }

        public static bool SaveLevel(String filename, List<LevelElement> list)
        {
            return true;
        }

    }
}