1 | // Aseprite Code Generator |
---|---|
2 | // Copyright (c) 2016-2017 David Capello |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef GEN_STRINGS_CLASS_H_INCLUDED |
8 | #define GEN_STRINGS_CLASS_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include <string> |
12 | |
13 | void gen_strings_class(const std::string& iniFile); |
14 | void gen_command_ids(const std::string& iniFile); |
15 | |
16 | #endif |
17 |