I don't know, I just made it because the meme was circulating a lot on my social media homepage hehe:v
- Cute
- Kawaii
- Blue Archive
- Ez to configure and extend
- Can make you happy everyday
- Enjoy
totally-not-malware/
├── CMakeLists.txt
├── README.md
├── resources
│ ├── images
│ │ ├── momoi.jpg
│ │ └── sigma.jpg
│ ├── resources.qrc
│ └── styles
│ └── windows_style.qss
└── src
├── FinalDialog.cpp
├── FinalDialog.h
├── main.cpp
├── MainWindow.cpp
├── MainWindow.h
├── SimulationDialog.cpp
├── SimulationDialog.h
└── utils
├── Config.h
├── TextGenerator.cpp
└── TextGenerator.h
- C++17 compiler
- Qt6 (QtWidgets module)
- CMake 3.20+
sudo pacman -S qt6-base cmake
git clone https://github.com/Chikochiii/Totally-Not-Malware.git
cd totally-not-malware-c
mkdir build && cd build
cmake ..
make
./totally-not-malware
- Install Qt6 via Qt Installer
- Ensure CMake & Visual Studio Build Tools installed
git clone https://github.com/Chikochiii/Totally-Not-Malware.git
cd totally-not-malware-c
mkdir build
cd build
cmake .. -G "Visual Studio 17 2022" # Replace with your VS version
cmake --build . --config Release
.\Release\totally-not-malware.exe
Edit src/utils/Config.h to adjust images and simulation behavior Example:
const QString IMAGE_MAIN = ":/images/momoi.jpg";
const QString IMAGE_FINAL = ":/images/sigma.jpg";
const int TOTAL_STEPS = 100;
const int BASE_INTERVAL_MS = 100;
const int FREEZE_AT_PERCENT = 89;
const int FREEZE_MS = 2500;
This is just a joke so don't take it seriously hehe
Please click the ⭐ (star) button if you like this project — it motivates me to create more projects 👉👈
