1 |
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 |
} |