mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-18 03:39:20 +01:00
14 lines
270 B
C++
14 lines
270 B
C++
#pragma once
|
|
#include "../Screen.h"
|
|
|
|
class FuelScreen : public Screen
|
|
{
|
|
public:
|
|
|
|
FuelScreen(const std::string& filePath, Vector2f pos, Vector2f size, TextureManager* manager);
|
|
|
|
virtual void Draw() const override;
|
|
virtual void Update(float elapsedSecs) override;
|
|
|
|
};
|