mirror of
https://github.com/therealKyp/Earth-and-Beyond-server
synced 2026-08-13 22:23:03 -04:00
17 lines
239 B
C++
17 lines
239 B
C++
|
|
// StarGateClass.cpp
|
||
|
|
|
||
|
|
#include "Net7.h"
|
||
|
|
#include "ObjectClass.h"
|
||
|
|
#include "StarGateClass.h"
|
||
|
|
|
||
|
|
|
||
|
|
StarGate::StarGate(long object_id) : Object (object_id)
|
||
|
|
{
|
||
|
|
m_Type = OT_STARGATE;
|
||
|
|
}
|
||
|
|
|
||
|
|
StarGate::~StarGate()
|
||
|
|
{
|
||
|
|
// TODO: destroy everything
|
||
|
|
}
|