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