ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/gr2lib/trunk/gr2lib/core/interfaces/IArtToolInfo.cs
Revision: 79
Committed: Thu Jul 15 21:50:56 2010 UTC (12 years, 8 months ago) by william
File size: 710 byte(s)
Log Message:
create and implement interfaces for all core classes (for type casting)

File Contents

# User Rev Content
1 william 79 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5     using Microsoft.Xna.Framework;
6    
7     using gr2lib.core.typedefs;
8     using gr2lib.core.coretypes.implementation;
9    
10     namespace gr2lib.core.interfaces
11     {
12     public interface IArtToolInfo : INativePointer
13     {
14     FilePath FromArtToolName { get; set; }
15     granny_int32 ArtToolMajorRevision { get; set; }
16     granny_int32 ArtToolMinorRevision { get; set; }
17     granny_real32 UnitsPerMeter { get; set; }
18     Vector3 Origin { get; set; }
19     Vector3 Right { get; set; }
20     Vector3 Up { get; set; }
21     Vector3 Back { get; set; }
22     IntPtr ExtendedData { get; set; }
23     }
24     }