public ChronoButton(ChronoHelperEditor owner, GUIContent content, float value) { this.owner = owner; this.value = value; this.content = content; }
public ChronoButton(ChronoHelperEditor owner, string title, float value) { this.owner = owner; this.value = value; content = new GUIContent(title); }