mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-11 17:17:42 +03:00
Minor fixes.
--HG-- branch : dev
This commit is contained in:
@@ -6,11 +6,17 @@
|
||||
|
||||
namespace EE { namespace Graphics {
|
||||
|
||||
class DrawableSearcher {
|
||||
class EE_API DrawableSearcher {
|
||||
public:
|
||||
static Drawable * searchByName( const std::string& name );
|
||||
|
||||
static Drawable * searchById( const Uint32 & id );
|
||||
|
||||
static void setPrintWarnings( const bool& print );
|
||||
|
||||
static bool getPrintWarnings();
|
||||
protected:
|
||||
static bool sPrintWarnings;
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
@@ -54,10 +54,10 @@ class EE_API TextureAtlasManager : public ResourceManager<TextureAtlas> {
|
||||
void printResources();
|
||||
|
||||
/** Sets if the warnings for not finding a resource must be printed in screen. */
|
||||
void printWarnings( const bool& warn );
|
||||
void setPrintWarnings( const bool& warn );
|
||||
|
||||
/** @return If warnings are being printed. */
|
||||
const bool& printWarnings() const;
|
||||
const bool& getPrintWarnings() const;
|
||||
protected:
|
||||
bool mWarnings;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user