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/averagecolorasset.h')
-rw-r--r--Source/Asset/Asset/averagecolorasset.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/Source/Asset/Asset/averagecolorasset.h b/Source/Asset/Asset/averagecolorasset.h
index 3bdcf2d9..5bd962b8 100644
--- a/Source/Asset/Asset/averagecolorasset.h
+++ b/Source/Asset/Asset/averagecolorasset.h
@@ -36,31 +36,31 @@
using std::string;
class AverageColor : public Asset {
- public:
- AverageColor(AssetManager* owner, uint32_t asset_id);
- static AssetType GetType() { return AVERAGE_COLOR_ASSET; }
- static const char* GetTypeName() { return "AVERAGE_COLOR_ASSET"; }
- static bool AssetWarning() { return true; }
+ public:
+ AverageColor(AssetManager* owner, uint32_t asset_id);
+ static AssetType GetType() { return AVERAGE_COLOR_ASSET; }
+ static const char* GetTypeName() { return "AVERAGE_COLOR_ASSET"; }
+ static bool AssetWarning() { return true; }
- int Load( const string &path, uint32_t load_flags );
- const char* GetLoadErrorString();
- const char* GetLoadErrorStringExtended() { return ""; }
- void Unload();
- void Reload();
- void ReportLoad() override;
+ int Load(const string& path, uint32_t load_flags);
+ const char* GetLoadErrorString();
+ const char* GetLoadErrorStringExtended() { return ""; }
+ void Unload();
+ void Reload();
+ void ReportLoad() override;
- inline const vec4& color() const {return color_;}
+ inline const vec4& color() const { return color_; }
- AssetLoaderBase* NewLoader() override;
+ AssetLoaderBase* NewLoader() override;
- ModID modsource_;
- private:
- static const int kAverageColorCacheVersion = 2;
- bool ReadCacheFile(const string& path, uint16_t checksum);
- void WriteCacheFile(const string& path, uint16_t checksum);
+ ModID modsource_;
-
- vec4 color_;
+ private:
+ static const int kAverageColorCacheVersion = 2;
+ bool ReadCacheFile(const string& path, uint16_t checksum);
+ void WriteCacheFile(const string& path, uint16_t checksum);
+
+ vec4 color_;
};
typedef AssetRef<AverageColor> AverageColorRef;