#region usings
using OpenTK;
#endregion
namespace SM.Base.Drawing
{
///
/// This represens a drawing instance.
///
public class Instance
{
///
/// The model matrix.
///
public Matrix4 ModelMatrix = Matrix4.Identity;
///
/// The texture offset.
///
public Vector2 TexturePosition = Vector2.Zero;
///
/// The texture scale.
///
public Vector2 TextureScale = Vector2.One;
}
}