Go to the documentation of this file.00001 using Microsoft.VisualBasic;
00002 using Microsoft.VisualBasic.Compatibility;
00003 using System;
00004 using System.Collections;
00005 using System.Collections.Generic;
00006 using System.Data;
00007 using System.Drawing;
00008 using System.Diagnostics;
00009 using System.Windows.Forms;
00010 using System.Linq;
00011 using System.Xml.Linq;
00012 namespace SoundsSharpNameSpace
00013 {
00014 public static class units
00015 {
00016 public struct Vector
00017 {
00018 public float X;
00019 public float Y;
00020 public float Z;
00021 public Vector(System.Object _X_, System.Object _Y_, System.Object _Z_)
00022 {
00023 this.X = _X_;
00024 this.Y = _Y_;
00025 this.Z = _Z_;
00026 }
00027 }
00028
00029 }
00030 }