Revision: | 82 |
Committed: | Thu Jul 15 23:36:04 2010 UTC (12 years, 6 months ago) by william |
File size: | 403 byte(s) |
Log Message: | move ExtenededData to it's own interface and make the classes, that need it, implement it. |
# | Content |
---|---|
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 IMaterial : INativePointer, IExtendedData |
10 | { |
11 | string Name { get; set; } |
12 | List<Map> Maps { get; set; } |
13 | Texture Texture { get; set; } |
14 | bool IsTexture { get; } |
15 | } |
16 | } |