pacman/lcd/lib/lcd.hpp

13 lines
209 B
C++
Raw Normal View History

2020-11-29 18:11:19 +00:00
#pragma once
2020-11-29 16:42:03 +00:00
2020-11-29 18:11:19 +00:00
#include <string>
#include <vector>
2020-11-29 16:42:03 +00:00
2020-11-29 18:11:19 +00:00
typedef std::vector<std::string> lcd_grid;
2020-11-29 16:42:03 +00:00
2020-11-29 18:11:19 +00:00
lcd_grid lcd(int value);
lcd_grid lcd(std::string s1,
std::string s2,
std::string s3);