Changed Moved resources around

~G2k
This commit is contained in:
2006-07-01 20:38:56 -04:00
parent 7faadb55bd
commit fc736f6b93
56 changed files with 481 additions and 1339 deletions

19
src/VideoPlugin.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include "Plugin.h"
#include "window.h"
#include "datatypes.h"
namespace OpenArena
{
class VideoPlugin :public Plugin
{
public:
public:
virtual ~VideoPlugin(){}
virtual Window* CreateNewWindow(uint32 width,
uint32 height,
uint32 bpp = 32,
bool fullscreen = false,
const char* title = NULL) = 0;
};
};