8 lines
198 B
C#
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>();
|
|
} |