Download this file
25 lines (18 with data), 463 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | #ifndef FXSHADER_INCLUDE
#define FXSHADER_INCLUDE
#include <list>
#include "FXHandle.h"
#include "Object.h"
class FXShader : public FXHandle {
public:
FXShader(const char* name);
~FXShader();
std::list<Object*>::iterator nulldummy;
std::list<Object*>::iterator begin; // zelfde naam als std::list
std::list<Object*>::iterator end;
bool unused;
void Get(const char* name);
void Reset();
void Print();
};
#endif
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.