1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 03:12:36 +01:00

Fix -Wmismatched-tags warnings

Fixes all occurences of this warning:
warning: '<type>' defined as a struct here but previously declared as a class
      [-Wmismatched-tags]
This commit is contained in:
Christoph Heiss 2016-08-10 20:38:46 +02:00
parent 771fafbd0e
commit 180ca626a5
3 changed files with 4 additions and 3 deletions

View File

@ -243,8 +243,9 @@ struct GarageInfo
* Gameplay state object that holds persistent state, and references runtime
* world state.
*/
struct GameState
class GameState
{
public:
/**
Basic Game State
*/

View File

@ -6,7 +6,7 @@
#include <objects/VehicleInfo.hpp>
class CollisionInstance;
class btVehicleRaycaster;
struct btVehicleRaycaster;
class btRaycastVehicle;
class btRigidBody;
class btHingeConstraint;

View File

@ -21,7 +21,7 @@ class ModelFrame;
class GameWorld;
class GameObject;
class AreaIndicatorInfo;
struct AreaIndicatorInfo;
/// @todo migrate to some other way of rendering each object type.
class CharacterObject;