mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 16:23:14 +02:00
9 lines
214 B
C++
9 lines
214 B
C++
// "Copyright [2023] <Krzysztof Rudnicki>"
|
|
#ifndef ENGINE_ENGINE_MISC_HPP_
|
|
#define ENGINE_ENGINE_MISC_HPP_
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
void print(const std::string s);
|
|
#endif // ENGINE_ENGINE_MISC_HPP_
|