-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGround.cs
42 lines (37 loc) · 1.15 KB
/
Ground.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Net;
using Microsoft.Xna.Framework.Storage;
using GoblinXNA;
using GoblinXNA.Graphics;
using GoblinXNA.SceneGraph;
using Model = GoblinXNA.Graphics.Model;
using GoblinXNA.Graphics.Geometry;
using GoblinXNA.Device.Capture;
using GoblinXNA.Device.Vision;
using GoblinXNA.Device.Vision.Marker;
using GoblinXNA.Device.Util;
using GoblinXNA.Physics;
using GoblinXNA.Helpers;
namespace MARVIN
{
class Ground: Microsoft.Xna.Framework.Game
{
//Nodes and trackers
MarkerNode groundNode; //Building Marker
GeometryNode GroundGeomNode; //Geometry Node
Material groundMaterial; //Building Material
TransformNode groundTransNode; //Transform node for this building
ARTagTracker _tracker; //ARTracker information
public Ground()
{
}
}
}