Exemplo n.º 1
0
// ==================================================================
action_result_t TActionFailure::exec(Tractor * tractor) const
// ==================================================================
{
	FATAL(("TActionFailure::exec() shouldn't be used directly"));
	T_ASSERT(false);

	T_UNUSED(tractor);
	return action_result_abort;
}
Exemplo n.º 2
0
bool IEntity::callSlot(const CString& slot, const CString& param)
{
    T_UNUSED(param);
    CApplication::getApp()->log(CString("No slot called %1 for entity %2").arg(slot).arg(m_name), ILogger::Warning);
    return false;
}
Exemplo n.º 3
0
void IEntity::frame(unsigned int frameTime)
{
    T_UNUSED(frameTime);
}
Exemplo n.º 4
0
 virtual void onEvent(const CKeyboardEvent& event) { T_UNUSED(event); } // MinGW ne trouve pas la méthode virtuelle...
Exemplo n.º 5
0
void ICamera::animate(unsigned int frameTime)
{
    T_UNUSED(frameTime);
}