farmlands/oldproject/Assets/Scripts/Model/Layer.cs
Tiberiu Chibici 914ae0de0d Implemented resource manager which can load textures and levels.
Implemented script to generate Resources.g.h file linking assets to code.
Added assets from old project.
2016-11-12 14:17:00 +02:00

19 lines
280 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
namespace Model
{
public class Layer
{
public string Name;
public int Width;
public int Height;
public int[,] Cells;
}
}