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

11 lines
196 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
#include <iostream>
2023-03-12 17:32:42 +01:00
#include "./misc.hpp"
void print(const std::string s) {
2022-09-05 20:17:25 +02:00
std::cout << s << std::endl;
}
2023-03-12 17:32:42 +01:00
#endif