room101/OBSOLETE/MONITOR.HPP

16 lines
222 B
C++

#ifndef __MONITOR_H
#define __MONITOR_H
#include "picture.hpp"
typedef struct
{
Picture back;
Picture front;
} Monitor;
Monitor MonitorCreate(void);
Monitor MonitorRefresh(Monitor);
#endif