11 lines
236 B
C#
11 lines
236 B
C#
using System;
|
|
using Services.Interfaces;
|
|
|
|
namespace Services {
|
|
public class ScoreService : IScoreService {
|
|
private int score = 0;
|
|
public void ScoreCheck(int value) {
|
|
this.score += value;
|
|
}
|
|
}
|
|
} |