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.
25 lines
425 B
25 lines
425 B
#pragma once
|
|
#include "VirusAttack.h"
|
|
|
|
class Scenario{
|
|
public:
|
|
Scenario(VirusAttack*game);
|
|
virtual void Start();
|
|
void _Update();
|
|
virtual void Update()=0;
|
|
void _Draw();
|
|
virtual void Draw()=0;
|
|
protected:
|
|
VirusAttack*game;
|
|
int state=0;
|
|
Textbox dialog;
|
|
float initialWaitTimer=3;
|
|
};
|
|
|
|
class Stage1:public Scenario{
|
|
public:
|
|
Stage1(VirusAttack*game);
|
|
void Start()override;
|
|
void Update()override;
|
|
void Draw()override;
|
|
}; |