public void SetBoat(Boat boat) { this.boat = boat; this.character = null; }
public void JoinBoat(Boat b) { obj.transform.parent = b.obj.transform; onGround = false; }
public void SetCharacter(Character character) { this.character = character; this.boat = null; }