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