1 | // Aseprite Code Generator |
---|---|
2 | // Copyright (c) 2014-2016 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_UI_CLASS_H_INCLUDED |
8 | #define GEN_UI_CLASS_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include <string> |
12 | #include "tinyxml.h" |
13 | |
14 | void gen_ui_class(TiXmlDocument* doc, |
15 | const std::string& inputFn, |
16 | const std::string& widgetId); |
17 | |
18 | #endif |
19 |