moving repo

This commit is contained in:
2024-07-04 19:58:19 -04:00
parent 6cbeb42144
commit c67dbcc62a
7 changed files with 70 additions and 18 deletions

View File

@ -1,7 +1,23 @@
#ifndef __CURSOR_H__
#define __CURSOR_H__
#include <string>
#include <ncurses.h>
#include "position.h"
class cursor;
class cursor{
private:
public:
cursor();
~cursor();
int getcmd() const;
void show() const;
void print_char(const position &pos) const;
void print_str(const position &head, const std::string str) const;
};
#endif