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