Refactoring

This commit is contained in:
Loic Guegan 2021-04-21 12:23:54 +02:00
parent ca1e725b0d
commit d9443c7fdf
22 changed files with 355 additions and 157 deletions

View file

@ -1,4 +1,4 @@
#include "framebuffer.h"
#include "framebuffer.hpp"
#define MAX_COL 80
#define MAX_LINE 25

View file

@ -1,7 +1,6 @@
#ifndef FRAMEBUFFER_H
#define FRAMEBUFFER_H
#pragma once
#include "core/types.h"
#include "core/types.hpp"
typedef enum VIDEO_COLORS {
BLACK=0, BLUE=1, GREEN=2,CYAN=3, RED=4,PURPLE=5,BROWN=6,GRAY=7,
@ -32,4 +31,3 @@ void scrollup();
*/
void clear();
#endif