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

10 lines
193 B
C++
Raw Normal View History

2023-03-12 16:24:48 +01:00
// "Copyright [2023] <Krzysztof Rudnicki>"
2022-09-05 20:17:25 +02:00
#ifndef MISC_CPP
#define MISC_CPP
2023-03-12 17:32:42 +01:00
#include "./misc.hpp"
#include <iostream>
void print(const std::string s) { std::cout << s << std::endl; }
2022-09-05 20:17:25 +02:00
2023-03-12 17:32:42 +01:00
#endif