Ejemplo n.º 1
0
 public Child(ChildBase stereotype, Parent parent) : base(stereotype.Id, stereotype.name)
 {
     Parent = parent;
 }
Ejemplo n.º 2
0
 // Use this for initialization
 public void Start()
 {
     Instance = this;
     //Debug.Log("初始化ChildBase");
     Init();
 }
Ejemplo n.º 3
0
 public ParentBase()
 {
     _child = new ChildBase(this);
 }