10 lines
129 B
C++
10 lines
129 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace zxscreen
|
|
{
|
|
void show();
|
|
void refresh(const uint8_t dt);
|
|
void redraw();
|
|
}
|