16 lines
423 B
C#
16 lines
423 B
C#
namespace Paps.UnityToolbarExtenderUIToolkit
|
|
{
|
|
internal abstract class RecommendedStyle
|
|
{
|
|
public void Apply(bool isInsideGroup)
|
|
{
|
|
if (isInsideGroup)
|
|
ApplyInsideGroupStyle();
|
|
else
|
|
ApplyRootElementStyle();
|
|
}
|
|
|
|
protected virtual void ApplyRootElementStyle() { }
|
|
protected virtual void ApplyInsideGroupStyle() { }
|
|
}
|
|
} |