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/Asset/Asset/texture.h')
-rw-r--r--Source/Asset/Asset/texture.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Asset/Asset/texture.h b/Source/Asset/Asset/texture.h
index f97af328..6282e74d 100644
--- a/Source/Asset/Asset/texture.h
+++ b/Source/Asset/Asset/texture.h
@@ -48,7 +48,7 @@ public:
TextureRef GetTextureRef();
TextureAsset( AssetManager* owner, uint32_t asset_id );
- virtual ~TextureAsset();
+ ~TextureAsset() override;
static AssetType GetType() { return TEXTURE_ASSET; }
static const char* GetTypeName() { return "TEXTURE_ASSET"; }
@@ -59,8 +59,8 @@ public:
const char* GetLoadErrorStringExtended() { return ""; }
void Unload();
- virtual void ReportLoad(){}
- virtual AssetLoaderBase* NewLoader();
+ void ReportLoad() override{}
+ AssetLoaderBase* NewLoader() override;
unsigned int GetTexID();
};