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