aseprite/src/app/tileset_mode.h
David Capello d73a67dde7 Revert "Swap "auto" mode to first place (Space+1) and "manual" to Space+2"
This reverts commit 2d0227e8b22505bb50e101afe917d0e478de410f.
2020-11-03 19:02:44 -03:00

24 lines
589 B
C++

// Aseprite
// Copyright (C) 2019-2020 Igara Studio S.A.
//
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
#ifndef APP_TILESET_MODE_H_INCLUDED
#define APP_TILESET_MODE_H_INCLUDED
#pragma once
namespace app {
// These modes are available edition modes for the tileset when an
// tilemap is edited.
enum class TilesetMode {
Manual, // Modify existent tiles (don't create new ones)
Auto, // Add/remove tiles automatically when needed
Stack, // Stack modified tiles as new ones
};
} // namespace app
#endif