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.

14 lines
335 B
C++

#include "qw_abstractscenecontrol.h"
QWAbstractSceneControl:: QWAbstractSceneControl()
{}
QWAbstractSceneControl::~QWAbstractSceneControl()
{}
void QWAbstractSceneControl::onBuildingStateMachine(QWStateMachine *state_machine, std::unique_ptr<GameFeatures> &game_features)
{
Q_UNUSED(state_machine)
Q_UNUSED(game_features)
}