Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
DynamicPhysDefClass.h
1/* Renegade Scripts.dll
2 Copyright 2013 Tiberian Technologies
3
4 This file is part of the Renegade scripts.dll
5 The Renegade scripts.dll is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 2, or (at your option) any later
8 version. See the file COPYING for more details.
9 In addition, an exemption is given to allow Run Time Dynamic Linking of this code with any closed source module that does not contain code covered by this licence.
10 Only the source code to the module(s) containing the licenced code has to be released.
11*/
12#ifndef TT_INCLUDE__DYNAMICPHYSDEFCLASS_H
13#define TT_INCLUDE__DYNAMICPHYSDEFCLASS_H
14
15#include "PhysDefClass.h"
16
17
18class DynamicPhysDefClass : public PhysDefClass
19{
20public:
21 DynamicPhysDefClass(void);
22 virtual bool Save(ChunkSaveClass &csave);
23 virtual bool Load(ChunkLoadClass &cload);
24 virtual const char * Get_Type_Name(void) { return "DynamicPhysDef"; }
25 virtual bool Is_Type(const char *);
26 virtual bool Is_Valid_Config (StringClass &message);
27#ifdef DDBEDIT
28 virtual void Dump (FileClass &file);
29#endif
30 DECLARE_EDITABLE(DynamicPhysDefClass,PhysDefClass);
31protected:
32 friend class DynamicPhysClass;
33 friend class PresetDump;
34};
35#endif