1 |
william |
79 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
|
|
using gr2lib.core.coretypes.implementation; |
6 |
|
|
|
7 |
|
|
namespace gr2lib.core.interfaces |
8 |
|
|
{ |
9 |
|
|
public interface ITexture : INativePointer |
10 |
|
|
{ |
11 |
|
|
FilePath FromFileName { get; set; } |
12 |
|
|
int TextureType { get; set; } |
13 |
|
|
int Width { get; set; } |
14 |
|
|
int Height { get; set; } |
15 |
|
|
int Encoding { get; set; } |
16 |
|
|
int SubFormat { get; set; } |
17 |
|
|
Layout Layout { get; set; } |
18 |
|
|
List<Image> Images { get; set; } |
19 |
|
|
IntPtr ExtendedData { get; set; } |
20 |
|
|
} |
21 |
|
|
} |