Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.23 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.23 KB

OverlayWidgets v1.0.4

banner

GitHub GitHub all releases GitHub issues GitHub last commit GitHub repo size

Overlay widgets is a program that allows you to draw over other programs with its plugin api.

How do i install it?

If you are to lazy to do it yourself then we have an installer.

How do i install a plugin?

Just move the plugin.dll to the /plugins/ and restart you're program.

How do i create a plugin?

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() {

}