20 lines
No EOL
258 B
C++
20 lines
No EOL
258 B
C++
#include "platform.hpp"
|
|
|
|
#include <SDL/SDL.h>
|
|
|
|
void* Platform::m_pointer;
|
|
|
|
void* Platform::GetProcAddress(const char* procname)
|
|
{
|
|
return SDL_GL_GetProcAddress(procname);
|
|
}
|
|
|
|
void Platform::WarpMouse(double x, double y)
|
|
{
|
|
|
|
}
|
|
|
|
float Platform::GetTime()
|
|
{
|
|
|
|
} |