-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6812b5
commit 81f91f7
Showing
4 changed files
with
280 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* COPYRIGHT: See COPYING in the top level directory | ||
* PROJECT: SlimViewer | ||
* FILE: SlimViews/Templates/TextureConfigView.cs | ||
* PURPOSE: The view for Texture Configuration | ||
* PROGRAMER: Peter Geinitz (Wayfarer) | ||
*/ | ||
|
||
namespace SlimViews | ||
{ | ||
public enum ImageTools | ||
{ | ||
/// <summary> | ||
/// The paint | ||
/// </summary> | ||
Paint = 0, | ||
|
||
/// <summary> | ||
/// The erase | ||
/// </summary> | ||
Erase = 1, | ||
|
||
/// <summary> | ||
/// The color select | ||
/// </summary> | ||
ColorSelect = 2, | ||
|
||
/// <summary> | ||
/// The area | ||
/// </summary> | ||
Area = 3, | ||
|
||
/// <summary> | ||
/// The cut | ||
/// </summary> | ||
Cut = 4 | ||
} | ||
} |
Oops, something went wrong.