Parent Directory
|
Revision Log
move ExtenededData to it's own interface and make the classes, that need it, implement it.
1 | 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, IExtendedData |
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 | |
20 | } |
21 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |