12 lines
202 B
C++
12 lines
202 B
C++
// Watchful Eye main file
|
|
#include <iostream>
|
|
|
|
#include "version.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
std::cout << "Watchful Eye " APPVERSION "\n";
|
|
|
|
std::cin.get();
|
|
return EXIT_SUCCESS;
|
|
}
|