mirror of
https://github.com/DinoMalin/paranoia-1.0.git
synced 2025-10-29 19:05:59 +00:00
11 lines
120 B
C++
11 lines
120 B
C++
#pragma once
|
|
#include "LCD.h"
|
|
|
|
class Jauge {
|
|
private:
|
|
LCD lcd;
|
|
public:
|
|
Jauge(LCD lcd);
|
|
void update(int newScore);
|
|
};
|