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

14 lines
268 B
C++

#pragma once
#include "../Screen.h"
class FuelScreen : public Screen
{
public:
FuelScreen(const std::string& filePath, Point2f pos, Point2f size, TextureManager* manager);
virtual void Draw() const override;
virtual void Update(float elapsedSecs) override;
};