From 1c3e0ddd22906fd7002cd1765cd17ae39369bb2a Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Tue, 31 Aug 2004 16:41:58 +0000 Subject: [PATCH] Basic ScreenNetEvaluation --- stepmania/src/ScreenNetEvaluation.cpp | 6 ++++++ stepmania/src/ScreenNetEvaluation.h | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 stepmania/src/ScreenNetEvaluation.cpp create mode 100644 stepmania/src/ScreenNetEvaluation.h diff --git a/stepmania/src/ScreenNetEvaluation.cpp b/stepmania/src/ScreenNetEvaluation.cpp new file mode 100644 index 0000000000..2e366934dc --- /dev/null +++ b/stepmania/src/ScreenNetEvaluation.cpp @@ -0,0 +1,6 @@ +#include "ScreenNetEvaluation.h" + +ScreenNetEvaluation::ScreenNetEvaluation (const CString & sClassName) : ScreenEvaluation( sClassName ) +{ + +} diff --git a/stepmania/src/ScreenNetEvaluation.h b/stepmania/src/ScreenNetEvaluation.h new file mode 100644 index 0000000000..bd0d32453f --- /dev/null +++ b/stepmania/src/ScreenNetEvaluation.h @@ -0,0 +1,9 @@ +#include "global.h" +#include "Screen.h" +#include "ScreenEvaluation.h" + +class ScreenNetEvaluation: public ScreenEvaluation +{ +public: + ScreenNetEvaluation (const CString & sClassName); +}; \ No newline at end of file