dust3d/src/paintmode.h

11 lines
123 B
C

#ifndef DUST3D_PAINT_MODE_H
#define DUST3D_PAINT_MODE_H
enum class PaintMode
{
None = 0,
Pull,
Push
};
#endif