Removed unnessecary attribute.
This commit is contained in:
parent
01b900f368
commit
8e2510903f
@ -3,12 +3,10 @@ using RecrownedGTK.Graphics;
|
|||||||
|
|
||||||
namespace RecrownedGTK.AssetsSystem.Information {
|
namespace RecrownedGTK.AssetsSystem.Information {
|
||||||
public struct TextureInfo : IInfo {
|
public struct TextureInfo : IInfo {
|
||||||
public string name;
|
public readonly byte[] textureData;
|
||||||
public byte[] textureData;
|
|
||||||
int width, height;
|
int width, height;
|
||||||
public Type type => typeof(TextureData);
|
public Type type => typeof(TextureData);
|
||||||
public TextureInfo(string name, int width, int height, byte[] textureData) {
|
public TextureInfo(int width, int height, byte[] textureData) {
|
||||||
this.name = name;
|
|
||||||
this.width = width;
|
this.width = width;
|
||||||
this.height = height;
|
this.height = height;
|
||||||
this.textureData = textureData;
|
this.textureData = textureData;
|
||||||
|
@ -12,7 +12,7 @@ namespace RecrownedGTK.AssetsSystem.Loaders {
|
|||||||
int width;
|
int width;
|
||||||
int height;
|
int height;
|
||||||
byte[] textureData = LoadPNG(path, out width, out height);
|
byte[] textureData = LoadPNG(path, out width, out height);
|
||||||
TextureInfo info = new TextureInfo(Path.GetFileName(path), width, height, textureData);
|
TextureInfo info = new TextureInfo(width, height, textureData);
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user