Danbias/Code/Game/GameLogic/IAttatchment.cpp

30 lines
257 B
C++

#include "IAttatchment.h"
#include "AttatchmentSocket.h"
using namespace GameLogic;
struct IAttatchment::PrivateData
{
PrivateData()
{
}
~PrivateData()
{
}
}myData;
IAttatchment::IAttatchment(void)
{
}
IAttatchment::~IAttatchment(void)
{
}