namespace DaggerFramework { public class Texture2d : Resource { public int Width { get; set; } public int Height { get; set; } public Texture2d(string path, byte[] buffer) : base(path, buffer) { } } }