farmlands/oldproject/Assets/Scripts/Model/Tile.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

16 lines
255 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
namespace Model
{
public class Tile
{
public string ImageSource;
public int Width;
public int Height;
}
}