You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
321 B
20 lines
321 B
1 year ago
|
#pragma once
|
||
|
#include "VirusAttack.h"
|
||
|
|
||
|
class Scenario{
|
||
|
VirusAttack*game;
|
||
|
public:
|
||
|
Scenario(VirusAttack*game);
|
||
|
void _Update();
|
||
|
virtual void Update()=0;
|
||
|
void _Draw();
|
||
|
virtual void Draw()=0;
|
||
|
protected:
|
||
|
};
|
||
|
|
||
|
class Stage1:public Scenario{
|
||
|
public:
|
||
|
Stage1(VirusAttack*game);
|
||
|
void Update()override;
|
||
|
void Draw()override;
|
||
|
};
|