Made timer and score a part of Workspace

This commit is contained in:
andreja6
2018-05-01 20:10:52 -07:00
parent 9999eb62e4
commit 57b407c894
3 changed files with 12 additions and 8 deletions

View File

@@ -1,8 +1,12 @@
#include "WorkspaceInstance.h"
float timer = 60.0F;
int score = 0;
WorkspaceInstance::WorkspaceInstance(void)
{
className = "Workspace";
timer = 60.0F;
score = 0;
}
WorkspaceInstance::~WorkspaceInstance(void)