Change folder structure, add solution to the root.
This commit is contained in:
11
DaggerFramework/Source/Resources/Texture2d.cs
Executable file
11
DaggerFramework/Source/Resources/Texture2d.cs
Executable file
@@ -0,0 +1,11 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user