public TimeScore copy_from(TimeScore that){
			date_recorded = that.date_recorded;
			played_for = that.played_for;
			distance_covered = that.distance_covered;
			return this;
		}
コード例 #2
0
		public Score(){
			settings = new GameSettings.Model ();
			time = new TimeScore ();
			berries = new StrawberryScore ();
			baskets = new BasketScore ();
		}