aboutsummaryrefslogtreecommitdiff
path: root/Super Polarity/ScoreScreen.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Super Polarity/ScoreScreen.cs')
-rw-r--r--Super Polarity/ScoreScreen.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Super Polarity/ScoreScreen.cs b/Super Polarity/ScoreScreen.cs
new file mode 100644
index 0000000..b96ae9b
--- /dev/null
+++ b/Super Polarity/ScoreScreen.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace SuperPolarity
+{
+ class ScoreScreen : Screen
+ {
+ public ScoreScreen(SuperPolarity newGame) : base(newGame) {}
+
+ public override void Initialize()
+ {
+ }
+ }
+}