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.
22 lines
254 B
22 lines
254 B
1 year ago
|
#include "Scenario.h"
|
||
|
|
||
|
Scenario::Scenario(VirusAttack*game)
|
||
|
:game(game){}
|
||
|
|
||
|
void Scenario::_Update(){
|
||
|
Update();
|
||
|
}
|
||
|
void Scenario::_Draw(){
|
||
|
Draw();
|
||
|
}
|
||
|
|
||
|
Stage1::Stage1(VirusAttack*game)
|
||
|
:Scenario(game){}
|
||
|
|
||
|
|
||
|
void Stage1::Update(){
|
||
|
|
||
|
}
|
||
|
void Stage1::Draw(){
|
||
|
|
||
|
}
|