mirror of
https://github.com/DinoMalin/paranoia-1.0.git
synced 2025-10-29 19:05:59 +00:00
18 lines
239 B
C++
18 lines
239 B
C++
#pragma once
|
|
#include "LCD.h"
|
|
|
|
class Face {
|
|
private:
|
|
int x;
|
|
LCD lcd;
|
|
public:
|
|
void blink();
|
|
void drawEyes();
|
|
void drawLeftSideEye();
|
|
void drawRightSideEye();
|
|
void drawAngry();
|
|
void drawLove();
|
|
void defaultPos();
|
|
Face(LCD lcd);
|
|
};
|