Change include guards

This commit is contained in:
Michał Janiszewski 2021-02-23 00:30:45 +01:00
parent 8ee49ab615
commit 003e5a0136
3 changed files with 3 additions and 12 deletions

View file

@ -7,8 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#ifndef VEHICLECOLOUR_H_
#define VEHICLECOLOUR_H_
#pragma once
#include "../common.h"
@ -24,5 +23,3 @@ struct VehicleColour
uint8_t Trim;
uint8_t Ternary;
};
#endif // VEHICLECOLOUR_H_

View file

@ -7,8 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#ifndef VEHICLEENTRY_H_
#define VEHICLEENTRY_H_
#pragma once
#include "../audio/AudioMixer.h"
#include "../common.h"
@ -88,5 +87,3 @@ static_assert(sizeof(rct_ride_entry_vehicle) % 4 == 0, "Invalid struct size");
#else
static_assert(sizeof(rct_ride_entry_vehicle) % 8 == 0, "Invalid struct size");
#endif
#endif // VEHICLEENTRY_H_

View file

@ -7,8 +7,7 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#ifndef ENTITYLIST_H_
#define ENTITYLIST_H_
#pragma once
#include "../common.h"
#include "../rct12/RCT12.h"
@ -237,5 +236,3 @@ public:
return EntityListIterator_t(std::cend(vec), std::cend(vec));
}
};
#endif // ENTITYLIST_H_