Skip to content

Instantly share code, notes, and snippets.

View hasirciogluhq's full-sized avatar
🎯
Focusing

Mustafa Hasırcıoğlu hasirciogluhq

🎯
Focusing
View GitHub Profile
@hasirciogluhq
hasirciogluhq / scanner.js
Created July 26, 2026 18:05
cheat engine like scanner for webgl apps
const CE = {
candidates: [],
heap: null,
type: "int", // "int" veya "float"
init(type = "int") {
this.type = type;
this.heap = type === "int"
? unityGameInstance.Module.HEAP32
: unityGameInstance.Module.HEAPF32;