public Goblin(Goblin prototype)
 {
     m_color    = Color.red;
     m_position = prototype.m_position;
     InstantiateInScene();
 }
Esempio n. 2
0
 private void Start()
 {
     m_goblin   = new Goblin(new Vector3(0f, 0f, 0f));
     m_skeleton = new Skeleton(new Vector3(1f, 0f, 0f));
 }