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/navmeshregionobject.h')
-rw-r--r--Source/Objects/navmeshregionobject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Objects/navmeshregionobject.h b/Source/Objects/navmeshregionobject.h
index e40d5b4d..5ec09736 100644
--- a/Source/Objects/navmeshregionobject.h
+++ b/Source/Objects/navmeshregionobject.h
@@ -34,13 +34,13 @@ class NavMesh;
class NavmeshRegionObject: public Object {
public:
NavmeshRegionObject();
- virtual ~NavmeshRegionObject();
+ ~NavmeshRegionObject() override;
- virtual EntityType GetType() const { return _navmesh_region_object; }
- virtual bool Initialize();
- virtual void Draw();
- virtual void GetDesc(EntityDescription &desc) const;
- virtual bool SetFromDesc( const EntityDescription& desc );
+ EntityType GetType() const override { return _navmesh_region_object; }
+ bool Initialize() override;
+ void Draw() override;
+ void GetDesc(EntityDescription &desc) const override;
+ bool SetFromDesc( const EntityDescription& desc ) override;
vec3 GetMinBounds();
vec3 GetMaxBounds();