Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Objects/lightvolume.h')
-rw-r--r--Source/Objects/lightvolume.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/Objects/lightvolume.h b/Source/Objects/lightvolume.h
index 673b33ec..371a89d1 100644
--- a/Source/Objects/lightvolume.h
+++ b/Source/Objects/lightvolume.h
@@ -1,7 +1,7 @@
//-----------------------------------------------------------------------------
// Name: lightvolume.h
// Developer: Wolfire Games LLC
-// Description:
+// Description:
// License: Read below
//-----------------------------------------------------------------------------
//
@@ -29,16 +29,15 @@
// Class Definition
//-----------------------------------------------------------------------------
-class LightVolumeObject: public Object
-{
-public:
+class LightVolumeObject : public Object {
+ public:
EntityType GetType() const override { return _light_volume_object; }
bool Initialize() override;
void Moved(Object::MoveType type) override;
void Dispose() override;
- void GetDesc(EntityDescription &desc) const override;
- bool SetFromDesc( const EntityDescription& desc ) override;
+ void GetDesc(EntityDescription& desc) const override;
+ bool SetFromDesc(const EntityDescription& desc) override;
LightVolumeObject();
void Draw() override;
~LightVolumeObject() override;