1// Aseprite
2// Copyright (c) 2020 Igara Studio S.A.
3//
4// This program is distributed under the terms of
5// the End-User License Agreement for Aseprite.
6
7#ifndef APP_CRASH_DOC_FORMAT_H_INCLUDED
8#define APP_CRASH_DOC_FORMAT_H_INCLUDED
9#pragma once
10
11#define DOC_FORMAT_VERSION_0 0 // Old version
12#define DOC_FORMAT_VERSION_1 1 // New version with tilesets
13#define DOC_FORMAT_VERSION_LAST 1
14
15#endif
16