engineer-thesis-WUT/Engine/engine/misc.cpp

10 lines
193 B
C++

// "Copyright [2023] <Krzysztof Rudnicki>"
#ifndef MISC_CPP
#define MISC_CPP
#include "./misc.hpp"
#include <iostream>
void print(const std::string s) { std::cout << s << std::endl; }
#endif