1// Aseprite Code Generator
2// Copyright (c) 2016-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_CHECK_STRINGS_H_INCLUDED
8#define GEN_CHECK_STRINGS_H_INCLUDED
9#pragma once
10
11#include <string>
12
13void check_strings(const std::string& widgetsDir,
14 const std::string& stringsDir,
15 const std::string& guiFile);
16
17#endif
18