Revision: | 79 |
Committed: | Thu Jul 15 21:50:56 2010 UTC (12 years, 8 months ago) by william |
File size: | 479 byte(s) |
Log Message: | create and implement interfaces for all core classes (for type casting) |
# | 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 Igrnfileinfo : INativePointer |
10 | { |
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 | } |