parent
1074d4a59a
commit
d61b647fda
@ -0,0 +1,22 @@ |
||||
#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(){ |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
#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; |
||||
}; |
Loading…
Reference in new issue