11 lines
298 B
C++
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);
|
|
}
|