Tiberiu Chibici
914ae0de0d
Implemented script to generate Resources.g.h file linking assets to code. Added assets from old project.
16 lines
255 B
C#
Executable File
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;
|
|
}
|
|
}
|