mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 18:21:38 +00:00
718112a8fe
Currently none of these is being used, but eventually they will, once more code gets ported over. So it's better to have them right away and avoid editing the project file too much, only to revert that later.
13 lines
166 B
C
13 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
|