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