Я пересоздал репозиторий из-за большого количества мусора в прошлом

This commit is contained in:
Jiga228
2025-09-14 15:00:44 +07:00
commit 78a25b305b
74 changed files with 3428 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#include <iostream>
#include "CoreInstance/CoreInstance.h"
int main(int argc, char* argv[]) {
try {
CoreInstance core;
std::cout << "CPU: " << core.getCountCPU() << std::endl;
std::cout << "Memory: " << core.getMemorySize() << std::endl;
core.start();
} catch(std::exception& e) {
std::cout << "[!] Unknown error (" << e.what() << ")\n";
return -1;
}
return 0;
}