15 lines
160 B
C++
15 lines
160 B
C++
#pragma once
|
|
class Interface
|
|
{
|
|
private:
|
|
int stars;
|
|
public:
|
|
Interface();
|
|
Interface(int);
|
|
~Interface();
|
|
|
|
void draw(void);
|
|
void update(float deltaTime);
|
|
};
|
|
|