mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
14 lines
237 B
C++
14 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
|