Add/move code into kutil library

This commit is contained in:
Justin C. Miller
2018-04-17 23:41:28 -07:00
parent 2050b89334
commit a27b8d6a3a
15 changed files with 80 additions and 45 deletions

View File

@@ -2,7 +2,7 @@
#include <stddef.h>
#include <stdint.h>
#include "util.h"
#include "kutil/coord.h"
class screen
{
@@ -36,5 +36,5 @@ private:
pixel_t *m_framebuffer;
color_masks m_masks;
coord<unsigned> m_resolution;
kutil::coord<unsigned> m_resolution;
};