【Unity】Dtoを使ったレベル管理

public class ScoreDto : MonoBehaviour { private int score; private int highScore; public void setScore(int s) { score = s; } public int getScore() { return score; } public void setHighScore(int hs) { highScore = hs; } public int getHighScore() { return highScore; } } public class LevelManager : Mon…