mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 21:01:48 +01:00
Update Screen system
Added FuelScreen (Working buttons) Added SellScreen (Nothing working)
This commit is contained in:
10
Game/Gui/Screens/FuelScreen.cpp
Normal file
10
Game/Gui/Screens/FuelScreen.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "FuelScreen.h"
|
||||
FuelScreen::FuelScreen(const std::string& filePath, Point2f pos, Point2f size, TextureManager* manager): Screen(filePath, pos, size, manager)
|
||||
{
|
||||
}
|
||||
void FuelScreen::Draw() const {
|
||||
Screen::Draw();
|
||||
}
|
||||
void FuelScreen::Update(float elapsedSecs) {
|
||||
Screen::Update(elapsedSecs);
|
||||
}
|
||||
Reference in New Issue
Block a user