6 lines
130 B
C++
6 lines
130 B
C++
|
|
#include <iostream>
|
||
|
|
#include <pd/common.hpp>
|
||
|
|
|
||
|
|
void PD::Log(const std::string& txt) {
|
||
|
|
std::cout << "[PD] " << txt << std::endl;
|
||
|
|
}
|