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

@ -6,7 +6,7 @@ import sys
if len(sys.argv) != 3:
sys.exit('Usage: extract.py <colors.json> <BlockType.inc>')
sys.exit('Usage: extract.py <colors.json> <BlockType.inc.cpp>')
with open(sys.argv[1]) as f:
colors = json.load(f)