Skip to content

This is a program that allows you to create menus that overlay the other programs.

License

Notifications You must be signed in to change notification settings

Yibtag/OverlayWidgets

Repository files navigation

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

}

About

This is a program that allows you to create menus that overlay the other programs.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages