An open API service indexing awesome lists of open source software.

https://github.com/0xvpr/c-cheat-template

Template for video-game hacking using C and Assembly.
https://github.com/0xvpr/c-cheat-template

assembly c cheat hacking library template videogame-hacking

Last synced: 2 months ago
JSON representation

Template for video-game hacking using C and Assembly.

Awesome Lists containing this project

README

          

# Video Game Hacking Template
A template for video-game hacking using C.

[ display image of default ]

## Overview
This template hooks into an x86 process by default and displays a basic rendering
of a cheat menu.

The menu is very modular and is only limited by your creativity.

## Structure
#### Hacks
The hacks section is responsible for hacks API that the event handler relies on.
#### Drawing
The drawing section is responsible for drawing API that the renderer relies on.
#### Events
The events section is responsible for listening for keyboard input and
performing operations based on that input.
#### Render
The render section is responsible for the initialization, format, and rendering
of the cheat menu for the end user.

### TODO:
- [ ] External
- [ ] Kernel Driver
- [x] Internal (DLL)