Exemplo n.º 1
0
		public void CopyFrom (Character baseCharacter)
		{
			CharName = baseCharacter.CharName;
			//Debug.Log( "Creating Character " + CharName + " from another character");
			
			Team = CharName;
			
			FillInDefaults ();
		}
Exemplo n.º 2
0
		public Character (Character baseCharacter) : this()
		{
			CopyFrom (baseCharacter);
		}