20 lines
364 B
C#
20 lines
364 B
C#
|
using Microsoft.Xna.Framework;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Recrowned_Athenaeum.DataTypes
|
|||
|
{
|
|||
|
public struct TextureAtlasRegion
|
|||
|
{
|
|||
|
string name;
|
|||
|
Rectangle bounds;
|
|||
|
Vector2 origin;
|
|||
|
bool ninePatch;
|
|||
|
int a, b, c, d;
|
|||
|
|
|||
|
}
|
|||
|
}
|