Create All Needed Scripts
This commit is contained in:
11
Assets/Scripts/Services/ScoreService.cs
Normal file
11
Assets/Scripts/Services/ScoreService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using Services.Interfaces;
|
||||
|
||||
namespace Services {
|
||||
public class ScoreService : IScoreService {
|
||||
private int score = 0;
|
||||
public void ScoreCheck(int value) {
|
||||
this.score += value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user