This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
monsterstalker/Assets/Scripts/PersistentData.cs
T

8 lines
198 B
C#

using System.Collections.Generic;
public static class PersistentData {
public static int timer;
public static int score;
public static HashSet<string> monsterNames = new HashSet<string>();
}