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/dynamiclightobject.h')
-rw-r--r--Source/Objects/dynamiclightobject.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/Objects/dynamiclightobject.h b/Source/Objects/dynamiclightobject.h
index a6f4c4ce..71f0dd89 100644
--- a/Source/Objects/dynamiclightobject.h
+++ b/Source/Objects/dynamiclightobject.h
@@ -31,20 +31,20 @@
class DynamicLightObject: public Object
{
public:
- virtual EntityType GetType() const { return _dynamic_light_object; }
- virtual void Draw();
- virtual bool Initialize();
+ EntityType GetType() const override { return _dynamic_light_object; }
+ void Draw() override;
+ 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;
vec3 GetTint() const;
float GetOverbright() const;
DynamicLightObject();
- virtual ~DynamicLightObject();
- void ReceiveObjectMessageVAList( OBJECT_MSG::Type type, va_list args );
- virtual void SetEnabled(bool val);
+ ~DynamicLightObject() override;
+ void ReceiveObjectMessageVAList( OBJECT_MSG::Type type, va_list args ) override;
+ void SetEnabled(bool val) override;
private:
int light_id_;