diff options
| author | skal <pascal.massimino@gmail.com> | 2026-01-28 11:25:34 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-01-28 11:25:34 +0100 |
| commit | 58a9a7c2426f543471747165131f37c766691997 (patch) | |
| tree | 0edd4c54d81e0f474c2e09a57d8212bee3727c76 /tools/asset_packer.cc | |
| parent | a5fd304c9db6d6191a1ae2368bbe013f54c78aff (diff) | |
style update
Diffstat (limited to 'tools/asset_packer.cc')
| -rw-r--r-- | tools/asset_packer.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/asset_packer.cc b/tools/asset_packer.cc index 3442e1b..24bdd26 100644 --- a/tools/asset_packer.cc +++ b/tools/asset_packer.cc @@ -42,13 +42,15 @@ int main(int argc, char *argv[]) { } // Generate assets.h - assets_h_file << "// This file is auto-generated by asset_packer.cc. Do not edit.\n\n"; + assets_h_file + << "// This file is auto-generated by asset_packer.cc. Do not edit.\n\n"; assets_h_file << "#pragma once\n"; assets_h_file << "#include <cstdint>\n\n"; assets_h_file << "enum class AssetId : uint16_t {\n"; // Generate assets_data.cc header - assets_data_cc_file << "// This file is auto-generated by asset_packer.cc. Do not edit.\n\n"; + assets_data_cc_file + << "// This file is auto-generated by asset_packer.cc. Do not edit.\n\n"; assets_data_cc_file << "#include \"util/asset_manager.h\"\n"; assets_data_cc_file << "#include \"assets.h\"\n\n"; |
