Overlay widgets is a program that allows you to draw over other programs with its plugin api.
If you are to lazy to do it yourself then we have an installer.
Just move the plugin.dll
to the /plugins/
and restart you're program.
Here is some example code. Make sure you iclude the plugin.h
from /api/
and compile it as a dll.
#include "../include/plugin.h"
const char* Plugin::getName() {
return "Example plugin";
}
void Plugin::onLoad(int width, int height) {
addRect(1, 50, 50, 50, 50, 255, 255, 255, 255);
addText(1, "Hello world", 100, 100, 255, 255, 255, 255);
}
void Plugin::onUpdate() {
}