mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 10:34:45 +00:00
17 lines
247 B
C
17 lines
247 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace DX
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @brief A class representing a referenced 3D vector of floats in Tribes 2.
|
||
|
|
*/
|
||
|
|
class Point3F
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Point3F(float &X, float &Y, float &Z);
|
||
|
|
|
||
|
|
float &x;
|
||
|
|
float &y;
|
||
|
|
float &z;
|
||
|
|
};
|
||
|
|
} // End NameSpace DX
|