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.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Objects/lightvolume.h b/Source/Objects/lightvolume.h
index 5c963f0c..673b33ec 100644
--- a/Source/Objects/lightvolume.h
+++ b/Source/Objects/lightvolume.h
@@ -32,16 +32,16 @@
class LightVolumeObject: public Object
{
public:
- virtual EntityType GetType() const { return _light_volume_object; }
- virtual bool Initialize();
+ EntityType GetType() const override { return _light_volume_object; }
+ bool Initialize() override;
- virtual void Moved(Object::MoveType type);
- virtual void Dispose();
- virtual void GetDesc(EntityDescription &desc) const;
- virtual bool SetFromDesc( const EntityDescription& desc );
+ void Moved(Object::MoveType type) override;
+ void Dispose() override;
+ void GetDesc(EntityDescription &desc) const override;
+ bool SetFromDesc( const EntityDescription& desc ) override;
LightVolumeObject();
- void Draw();
- virtual ~LightVolumeObject();
+ void Draw() override;
+ ~LightVolumeObject() override;
bool dirty;
};