mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
15 lines
237 B
C++
15 lines
237 B
C++
#ifndef CSV_WIDGET_BRUSHSHAPES_H
|
|
#define CSV_WIDGET_BRUSHSHAPES_H
|
|
|
|
namespace CSVWidget
|
|
{
|
|
enum BrushShape
|
|
{
|
|
BrushShape_Point,
|
|
BrushShape_Square,
|
|
BrushShape_Circle,
|
|
BrushShape_Custom
|
|
};
|
|
}
|
|
#endif
|