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.
- Host: GitHub
- URL: https://github.com/0xvpr/c-cheat-template
- Owner: 0xvpr
- License: mit
- Created: 2021-08-27T07:10:57.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-01-04T04:08:58.000Z (over 4 years ago)
- Last Synced: 2025-10-31T15:05:53.320Z (8 months ago)
- Topics: assembly, c, cheat, hacking, library, template, videogame-hacking
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)