mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
Change include guards
This commit is contained in:
parent
8ee49ab615
commit
003e5a0136
3 changed files with 3 additions and 12 deletions
|
@ -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_
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -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_
|
||||
|
|
Loading…
Reference in a new issue