mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-08 12:40:50 +00:00
18 lines
438 B
C++
18 lines
438 B
C++
// Aseprite Code Generator
|
|
// Copyright (c) 2016-2017 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef GEN_CHECK_STRINGS_H_INCLUDED
|
|
#define GEN_CHECK_STRINGS_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
void check_strings(const std::string& widgetsDir,
|
|
const std::string& stringsDir,
|
|
const std::string& guiFile);
|
|
|
|
#endif
|