mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-04 22:14:25 +02:00
19 lines
486 B
C++
19 lines
486 B
C++
|
#define VCMI_DLL
|
||
|
#include "Connection.h"
|
||
|
#include "NetPacks.h"
|
||
|
#include "VCMI_Lib.h"
|
||
|
#include "../hch./CObjectHandler.h"
|
||
|
#include "../hch/CHeroHandler.h"
|
||
|
#include "../hch/CTownHandler.h"
|
||
|
#include "RegisterTypes.h"
|
||
|
|
||
|
|
||
|
void foofoofoo()
|
||
|
{
|
||
|
//never called function to force instantation of templates
|
||
|
int *ccc = NULL;
|
||
|
registerTypes((CISer<CConnection>&)*ccc);
|
||
|
registerTypes((COSer<CConnection>&)*ccc);
|
||
|
registerTypes((CSaveFile&)*ccc);
|
||
|
registerTypes((CLoadFile&)*ccc);
|
||
|
}
|