You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GlosSI/GlosSITarget/SteamTarget.cpp

17 lines
276 B
C++

#include "SteamTarget.h"
#include <iostream>
SteamTarget::SteamTarget(int argc, char* argv[]) : window_([this] { run_ = false; }) {
}
int SteamTarget::run() {
run_ = true;
window_.setFpsLimit(90);
while (run_) {
window_.update();
}
return 1;
}