Files
prog2/Game/Gui/Screens/FuelScreen.cpp
Bram Verhulst eb4c7b4d76 Update Screen system
Added FuelScreen (Working buttons)
Added SellScreen (Nothing working)
2024-04-04 00:07:45 +02:00

11 lines
298 B
C++

#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);
}