You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
367 B
C++
22 lines
367 B
C++
#include "cga.h"
|
|
|
|
namespace CGA {
|
|
|
|
void setCursor(unsigned abs_x, unsigned abs_y) {
|
|
(void)abs_x;
|
|
(void)abs_y;
|
|
}
|
|
|
|
void getCursor(unsigned& abs_x, unsigned& abs_y) {
|
|
(void)abs_x;
|
|
(void)abs_y;
|
|
}
|
|
|
|
void show(unsigned abs_x, unsigned abs_y, char character, Attribute attrib) {
|
|
(void)abs_x;
|
|
(void)abs_y;
|
|
(void)character;
|
|
(void)attrib;
|
|
}
|
|
}; // namespace CGA
|