mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-16 13:14:44 +00:00
881667f01b
Generate app::gen::SkinFile class from skin.xml to automate creation of ID references.
17 lines
369 B
C++
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
|