10 lines
189 B
C#
10 lines
189 B
C#
namespace Obi
|
|
{
|
|
public interface IObiBrushMode
|
|
{
|
|
string name{get;}
|
|
bool needsInputValue{ get; }
|
|
void ApplyStamps(ObiBrushBase brush, bool modified);
|
|
}
|
|
}
|