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