testsAndMisc/SFMLEngine/makingAGameTick/basic.cpp

11 lines
145 B
C++

#ifndef BASIC_CPP
#define BASIC_CPP
#include <iostream>
void print(const std::string s)
{
std::cout << s << std::endl;
}
#endif // BASIC_CPP