mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
23 lines
464 B
C++
23 lines
464 B
C++
#pragma once
|
|
|
|
#include "WAInputPlugin.h"
|
|
|
|
class WAPlayer
|
|
{
|
|
WAInputPlugin *_pluginList;
|
|
int _nPlugins;
|
|
|
|
WAPlayer &operator=(const WAPlayer &other);
|
|
WAPlayer(const WAPlayer &other);
|
|
public:
|
|
WAPlayer(void);
|
|
~WAPlayer(void);
|
|
|
|
|
|
|
|
void ClearList();
|
|
void LoadPlugins(const char *path);
|
|
WAInputPlugin *SelectBestPlugin(const char *songName);
|
|
|
|
bool EnumPlugins(bool (*EnumProc)(WAPlayer &player, WAInputPlugin &plugin, void *context), void *context);
|
|
};
|