23 lines
436 B
C#
23 lines
436 B
C#
|
using Recrowned_Athenaeum.DataTypes;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;23
|
|||
|
|
|||
|
namespace RecrownedAthenaeum.DataTypes
|
|||
|
{
|
|||
|
public class TextureAtlas
|
|||
|
{
|
|||
|
private TextureAtlasRegion[] textureRegions;
|
|||
|
|
|||
|
public TextureAtlas(TextureAtlasRegion[] textureRegions)
|
|||
|
{
|
|||
|
this.textureRegions = textureRegions;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|