Rename .inc files to .inc.cpp for better language detection by editors and Github

This commit is contained in:
Matthias Schiffer 2021-06-25 19:43:14 +02:00
parent bfc9fcafb9
commit 73e5c12cde
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
5 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ namespace Resource {
const std::unordered_map<std::string, BlockType> BlockType::Types = {
#include "BlockType.inc"
#include "BlockType.inc.cpp"
};
@ -51,7 +51,7 @@ static constexpr LegacyBlockType simple(const char *t) {
static const LegacyBlockType LEGACY_BLOCK_TYPE_DATA[256] = {
#include "LegacyBlockType.inc"
#include "LegacyBlockType.inc.cpp"
};