Revision: | 82 |
Committed: | Thu Jul 15 23:36:04 2010 UTC (12 years, 8 months ago) by william |
File size: | 494 byte(s) |
Log Message: | move ExtenededData to it's own interface and make the classes, that need it, implement it. |
# | User | Rev | Content |
---|---|---|---|
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 | william | 82 | public interface Igrnfileinfo : INativePointer, IExtendedData |
10 | william | 79 | { |
11 | ArtToolInfo ArtToolInfo { get; set; } | ||
12 | ExporterInfo ExporterInfo { get; set; } | ||
13 | string FromFileName { get; set; } | ||
14 | List<Texture> Textures { get; set; } | ||
15 | List<Material> Materials { get; set; } | ||
16 | } | ||
17 | } |