11 lines
190 B
C#
Executable File
11 lines
190 B
C#
Executable File
namespace DaggerFramework
|
|
{
|
|
public class Texture2d : Resource
|
|
{
|
|
public Texture2d(byte[] data)
|
|
{
|
|
Data = data;
|
|
}
|
|
public byte[] Data;
|
|
}
|
|
} |