mirror of
https://github.com/DinoMalin/paranoia-1.0.git
synced 2025-10-30 11:06:00 +00:00
13 lines
131 B
C++
13 lines
131 B
C++
#pragma once
|
|
#include "LCD.h"
|
|
|
|
class Face {
|
|
private:
|
|
int x;
|
|
LCD lcd;
|
|
public:
|
|
void blink();
|
|
void drawEyes();
|
|
Face(LCD lcd);
|
|
};
|