Skip to content

Instantly share code, notes, and snippets.

View fum1h1ro's full-sized avatar
⚔️
?

fum1h1ro fum1h1ro

⚔️
?
View GitHub Profile
public class EditorFieldBase {
protected static uint uid_ = 0;
protected string name_;
protected string name { get { return name_; } }
protected EditorFieldBase() {
name_ = (uid_++).ToString();
}
}
public class EditorIntField : EditorFieldBase {
private GUIStyle style_;