forked from tcobbs/ldview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModelLoader.h
More file actions
37 lines (30 loc) · 724 Bytes
/
ModelLoader.h
File metadata and controls
37 lines (30 loc) · 724 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
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef __MODELLOADER_H__
#define __MODELLOADER_H__
#include <TCFoundation/TCObject.h>
#include <windows.h>
#define MAX_MODELS 16
class ModelWindow;
class LDViewWindow;
class TCAlert;
class ModelLoader: public TCObject
{
public:
ModelLoader(HINSTANCE, int, bool);
void update(void);
protected:
~ModelLoader(void);
virtual void dealloc(void);
void init(void);
// virtual void loadModel(void);
virtual void startup(void);
virtual char *getCommandLineFilename(void);
void snapshotCallback(TCAlert *alert);
// virtual HKEY openLDViewRegistryKey(void);
ModelWindow* modelWindow;
LDViewWindow* parentWindow;
HINSTANCE hInstance;
int nCmdShow;
bool screenSaver;
bool offscreenSetup;
};
#endif