mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-08 15:40:28 -04:00
github publish
This commit is contained in:
commit
506e23bf32
542 changed files with 120675 additions and 0 deletions
23
Windows/WAPlayer.h
Normal file
23
Windows/WAPlayer.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue