Hello!
I have problem in compiling TFS.
In protocolgame.cpp changed:
on
and in protocolgame.h changed
on
At the end of compilation is a error:
How I fix this error?
I have problem in compiling TFS.
In protocolgame.cpp changed:
Code:
void ProtocolGame::sendMagicEffect(const Position& pos, uint8_t type)
Code:
void ProtocolGame::sendMagicEffect(const Position& pos, uint16_t type)
and in protocolgame.h changed
Code:
void sendMagicEffect(const Position& pos, uint8_t type)
Code:
void sendMagicEffect(const Position& pos, uint16_t type)
At the end of compilation is a error:
Code:
[Linker error] undefined reference to `ProtocolGame::sendMagicEffect(Position const&, unsigned char)'
How I fix this error?