1// Aseprite
2// Copyright (C) 2001-2015 David Capello
3//
4// This program is distributed under the terms of
5// the End-User License Agreement for Aseprite.
6
7#ifndef APP_UTIL_MSK_FILE_H_INCLUDED
8#define APP_UTIL_MSK_FILE_H_INCLUDED
9#pragma once
10
11namespace doc {
12 class Mask;
13}
14
15namespace app {
16
17 doc::Mask* load_msk_file(const char* filename);
18 int save_msk_file(const doc::Mask* mask, const char* filename);
19
20} // namespace app
21
22#endif
23