Skip to content

Commit

Permalink
HUD update
Browse files Browse the repository at this point in the history
  • Loading branch information
anzeal authored Feb 27, 2019
1 parent f50e5f7 commit c4439a3
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions Sky-Bomber/FuelCheck.h
Original file line number Diff line number Diff line change
@@ -1,21 +1,30 @@

#pragma once
#include<SFML/Graphics.hpp>

class FuelCheck {
public:
int currentFuel;
FuelCheck()
{

}
int currentFuel;
int currentLife;

FuelCheck()
{

}
bool isFinished(bool collision = false);
void setFuel(int ccurrentFuel)
void setFuel(int ccurrentFuel )
{
currentFuel = ccurrentFuel;
}
int getFuel()
{
return currentFuel;
}
void setLife(int ccurrentLife)
{
currentLife = ccurrentLife;
}
int getLife()
{
return currentLife;
}
};

0 comments on commit c4439a3

Please sign in to comment.