mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 02:24:46 +00:00
25 lines
533 B
C++
25 lines
533 B
C++
#pragma once
|
|
|
|
#include <DXAPI/Point3F.h>
|
|
#include <DXAPI/NetConnection.h>
|
|
#include <LinkerAPI.h>
|
|
#include <DXAPI/ShapeBase.h>
|
|
|
|
namespace DX
|
|
{
|
|
/**
|
|
* @brief A class representing an incoming connection to the Tribes 2 server.
|
|
*/
|
|
class GameConnection : public NetConnection
|
|
{
|
|
public:
|
|
GameConnection(unsigned int obj);
|
|
|
|
/**
|
|
* @brief Gets the control object this game connection is controlling.
|
|
* @return The shapebase instance being controlled.
|
|
*/
|
|
ShapeBase getControlObject(void);
|
|
};
|
|
} // End NameSpace DX
|