You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kue/rules.cpp

23 lines
408 B
C++

#include "rules.h"
// Stub implementations
// These functions exist purely to define an interface to inherit from
void KueRulesEngine::billiardSunk(unsigned int ball, unsigned int pocket)
{
Q_UNUSED(ball);
Q_UNUSED(pocket);
}
void KueRulesEngine::billiardHit(unsigned int ball1, unsigned int ball2)
{
Q_UNUSED(ball1);
Q_UNUSED(ball2);
}
void KueRulesEngine::motionStopped()
{
}
#include "rules.moc"