forked from alpet83/Xray-Research
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlenderDefault.h
29 lines (18 loc) · 889 Bytes
/
BlenderDefault.h
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
// BlenderDefault.h: interface for the CBlenderDefault class.
//
#if !defined(AFX_BLENDERDEFAULT_H__C12F64EE_43E7_4483_9AC3_29272E0401E7__INCLUDED_)
#define AFX_BLENDERDEFAULT_H__C12F64EE_43E7_4483_9AC3_29272E0401E7__INCLUDED_
#pragma once
class CBlender_default : public IBlender
{
public:
virtual LPCSTR getComment() { return "LEVEL: lmap*base (default)"; }
virtual BOOL canBeDetailed() { return TRUE; }
virtual BOOL canBeLMAPped() { return TRUE; }
virtual void Save (IWriter& fs);
virtual void Load (IReader& fs, u16 version);
virtual void Compile (CBlender_Compile& C);
CBlender_default();
virtual ~CBlender_default();
};
#endif // !defined(AFX_BLENDERDEFAULT_H__C12F64EE_43E7_4483_9AC3_29272E0401E7__INCLUDED_)