aseprite/src/gen/skin_class.h
David Capello 881667f01b Replaced app::skin::ThemeColor with app::gen::SkinTheme::Colors
Generate app::gen::SkinFile class from skin.xml to automate creation
of ID references.
2015-02-15 15:29:16 -03:00

17 lines
369 B
C++

// Aseprite Code Generator
// Copyright (c) 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef GEN_SKIN_CLASS_H_INCLUDED
#define GEN_SKIN_CLASS_H_INCLUDED
#pragma once
#include <string>
#include "tinyxml.h"
void gen_skin_class(TiXmlDocument* doc, const std::string& inputFn);
#endif