Removed unnessecary attribute.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user