mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
14 lines
166 B
C
14 lines
166 B
C
|
#ifndef DUMBFILE_H
|
||
|
#define DUMBFILE_H
|
||
|
|
||
|
#include "../dumb.h"
|
||
|
|
||
|
struct DUMBFILE
|
||
|
{
|
||
|
const DUMBFILE_SYSTEM *dfs;
|
||
|
void *file;
|
||
|
long pos;
|
||
|
};
|
||
|
|
||
|
#endif // DUMBFILE_H
|