⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nebu_sourcesample.h

📁 小游戏 linux very happy
💻 H
字号:
#ifndef NEBU_Sound_SourceSample_H#define NEBU_Sound_SourceSample_H#include "nebu_Sound.h"#include "nebu_Source.h"#include "nebu_SoundSystem.h"namespace Sound {  class SourceSample : public Source {  public:    SourceSample(System *system);    virtual ~SourceSample();    void Load(char *filename);    virtual int Mix(Uint8 *data, int len);    Uint8* _buffer;    int _buffersize;  protected:    virtual void Reset() { _position = 0; }        private:    int _position;    int _decoded;  };}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -