1
0
mirror of https://github.com/sm64pc/sm64pc.git synced 2025-04-12 00:05:59 +02:00
sm64pc/tools/output_level_headers.py
2019-12-01 21:52:53 -05:00

6 lines
130 B
Python

#!/usr/bin/env python3
import sys
for line in sys.stdin:
if line.strip():
print('#include "{}"'.format(line.strip()))