2017-01-20 08:36:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
class RawFiles : public Component
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RawFiles();
|
|
|
|
|
2022-07-07 09:32:18 -04:00
|
|
|
static char* ReadRawFile(const char* filename, char* buf, int size);
|
2022-08-24 17:46:07 -04:00
|
|
|
|
|
|
|
private:
|
2022-07-07 09:32:18 -04:00
|
|
|
static char* GetMenuBuffer(const char* filename);
|
2017-01-19 16:23:59 -05:00
|
|
|
};
|
|
|
|
}
|