Example #1
0
        public override void ReportScore(ReportScoreCompletion _onCompletion)
        {
            base.ReportScore(_onCompletion);

            // Native method call
            reportScore(GetScoreInfoJSONObject().ToJSON(), Value);
        }
Example #2
0
 /// <summary>
 /// Reports the score to game service server.
 /// </summary>
 /// <param name="_onCompletion">Callback to be called when operation is completed.</param>
 public virtual void ReportScore(ReportScoreCompletion _onCompletion)
 {
     // Cache event
     ReportScoreFinishedEvent = _onCompletion;
 }
		public override void ReportScore (ReportScoreCompletion _onCompletion)
		{
			base.ReportScore (_onCompletion);

			// Native method call
			reportScore(GetScoreInfoJSONObject().ToJSON(), Value);
		}
		public override void ReportScore (ReportScoreCompletion _onCompletion)
		{
			base.ReportScore (_onCompletion);
			
			EditorGameCenter.Instance.ReportScore(this);
		}
		/// <summary>
		/// Reports the score to game service server.
		/// </summary>
		/// <param name="_onCompletion">Callback to be called when operation is completed.</param>
		public virtual void ReportScore (ReportScoreCompletion _onCompletion)
		{
			// Cache event
			ReportScoreFinishedEvent = _onCompletion;
		}
Example #6
0
        public override void ReportScore(ReportScoreCompletion _onCompletion)
        {
            base.ReportScore(_onCompletion);

            EditorGameCenter.Instance.ReportScore(this);
        }