Files
HauntedBloodlines/Assets/Obi/Editor/Common/Blueprints/Brushes/BrushModes/IObiBrushMode.cs
2025-05-29 22:31:40 +03:00

10 lines
189 B
C#

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