mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-21 02:51:39 +00:00
17 lines
244 B
C++
Executable file
17 lines
244 B
C++
Executable file
#ifndef __buffer_hpp__
|
|
#define __buffer_hpp__
|
|
|
|
class Buffer {
|
|
public:
|
|
typedef enum { TYPE_PCM, TYPE_MIDI } Type;
|
|
|
|
private:
|
|
protected:
|
|
public:
|
|
Buffer() { }
|
|
virtual ~Buffer() { }
|
|
|
|
virtual Type GetType() const = 0;
|
|
};
|
|
|
|
#endif
|