Mentions légales du service

Skip to content
Snippets Groups Projects

Coding Rules roughing

Merged MONSEIGNE Thibaut requested to merge fix-tmonseigne-codingrules into master
All threads resolved!
Files
299+
#if defined(TARGET_HAS_ThirdPartyOgre3D)
#include "ovassvepCCommandShipControl.h"
@@ -7,9 +6,7 @@
using namespace OpenViBESSVEP;
CCommandShipControl::CCommandShipControl(CShooterApplication* poApplication)
: ICommandVRPNButton(poApplication, "SSVEP_VRPN_ShipControl")
{
}
: ICommandVRPNButton(poApplication, "SSVEP_VRPN_ShipControl") {}
void CCommandShipControl::execute(int iButton, int iState)
{
@@ -21,12 +18,12 @@ void CCommandShipControl::execute(int iButton, int iState)
l_poShooterApplication->getShip()->shoot();
break;
case 1:
l_poShooterApplication->getShip()->rotate( -6 );
l_poShooterApplication->getShip()->rotate(-6);
break;
case 2:
l_poShooterApplication->getShip()->rotate( 6 );
l_poShooterApplication->getShip()->rotate(6);
break;
}
}
#endif
\ No newline at end of file
#endif
Loading