engineer-thesis-WUT/Engine/engine/misc.cpp
2022-10-19 15:51:39 +02:00

10 lines
150 B
C++

#ifndef MISC_CPP
#define MISC_CPP
#include <iostream>
#include "misc.hpp"
void print(const std::string s)
{
std::cout << s << std::endl;
}
#endif