Files
Fishing2/Assets/Obi/Editor/Common/Blueprints/Brushes/BrushModes/IObiBrushMode.cs
2025-11-10 00:08:26 +08:00

10 lines
189 B
C#

namespace Obi
{
public interface IObiBrushMode
{
string name{get;}
bool needsInputValue{ get; }
void ApplyStamps(ObiBrushBase brush, bool modified);
}
}