mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 06:22:15 -07:00
fix linker errors
This commit is contained in:
parent
cf6826dc00
commit
2a0cf45f4d
2 changed files with 5 additions and 1 deletions
|
|
@ -17,6 +17,7 @@ set(common_SOURCES
|
|||
passwordhasher.cpp
|
||||
rng_abstract.cpp
|
||||
rng_sfmt.cpp
|
||||
server/game/server_abstract_participant.cpp
|
||||
server/game/server_arrow.cpp
|
||||
server/game/server_arrowtarget.cpp
|
||||
server/game/server_card.cpp
|
||||
|
|
|
|||
|
|
@ -73,7 +73,10 @@ public:
|
|||
bool _judge,
|
||||
Server_AbstractUserInterface *_handler);
|
||||
~Server_AbstractParticipant() override;
|
||||
virtual void prepareDestroy();
|
||||
virtual void prepareDestroy()
|
||||
{
|
||||
removeFromGame();
|
||||
};
|
||||
void removeFromGame();
|
||||
Server_AbstractUserInterface *getUserInterface() const
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue