Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
275 B · 24 lines
C++
at main
123456789101112131415161718192021222324#include "stdafx.h"#include "SavedData.h"
SavedData::SavedData(const wstring& id) : id( id ){ dirty = false;}
void SavedData::setDirty(){ setDirty(true);}
void SavedData::setDirty(bool dirty){ this->dirty = dirty;}
bool SavedData::isDirty(){ return dirty;}