Files
palladium/source/common.cpp
tobid7 d4c59e5b61 Add backends
- Renamed GfxOpenGL to GfxOPenGL2
- Added GfxOpenGL3 backend for OpenGL 3.3+
- Added WIP DirectX9 backend
- Added structure for Citro3D
- Added linear Allocator
2026-03-17 16:47:19 +01:00

6 lines
137 B
C++

#include <iostream>
#include <pd/common.hpp>
PD_API void PD::Log(const std::string& txt) {
std::cout << "[PD] " << txt << std::endl;
}