Removed unnessecary attribute.

This commit is contained in:
2020-04-17 22:29:01 -05:00
parent 01b900f368
commit 8e2510903f
2 changed files with 3 additions and 5 deletions

View File

@@ -3,12 +3,10 @@ using RecrownedGTK.Graphics;
namespace RecrownedGTK.AssetsSystem.Information {
public struct TextureInfo : IInfo {
public string name;
public byte[] textureData;
public readonly byte[] textureData;
int width, height;
public Type type => typeof(TextureData);
public TextureInfo(string name, int width, int height, byte[] textureData) {
this.name = name;
public TextureInfo(int width, int height, byte[] textureData) {
this.width = width;
this.height = height;
this.textureData = textureData;