Skip to content

Instantly share code, notes, and snippets.

View AXE123456-Cloud's full-sized avatar

AXE123456-Cloud

View GitHub Profile
@AXE123456-Cloud
AXE123456-Cloud / gist:5e98ed94badbb86c36f4bf30b5ffb59c
Created February 13, 2026 08:20
Code that includes login UI, combat logic, inventory logic, save UI, and save functionality.You can make it better.Maybe more logic.Tanks for you!
#define WIN32_LEAN_AND_MEAN
#define _CRT_SECURE_NO_WARNINGS
#include <windows.h>
#include <cstdio>
#include <vector>
#include <ctime>
#include <cstring>
#include <fstream>
#include <sys/stat.h>
#pragma comment(linker, "/SUBSYSTEM:WINDOWS")
@kylemsguy
kylemsguy / blah.cpp
Last active February 14, 2026 04:03
Vector of Vectors test
#include <cstdio>
#include <vector>
using namespace std;
class Blah {
private:
int a;
public:
Blah(int a){
this->a = a;