forked from vladislove/pgiz4
17 lines
359 B
C#
17 lines
359 B
C#
using System.Collections.Generic;
|
||
|
||
// Классы для хранения данных. Не являются MonoBehaviour.
|
||
|
||
[System.Serializable]
|
||
public class HighScoreEntry
|
||
{
|
||
public string playerName;
|
||
public int score;
|
||
}
|
||
|
||
[System.Serializable]
|
||
public class HighScoreList
|
||
{
|
||
public List<HighScoreEntry> scores = new List<HighScoreEntry>();
|
||
}
|