Skip to content

Commit

Permalink
Fix some Asset manager members are mistakenly public
Browse files Browse the repository at this point in the history
  • Loading branch information
enginmanap committed Dec 3, 2024
1 parent b636b85 commit 808ab3f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Assets/AssetManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ class GraphicsInterface;
class ALHelper;

class AssetManager {
public:
enum AssetTypes { Asset_type_DIRECTORY, Asset_type_MODEL, Asset_type_TEXTURE, Asset_type_SKYMAP, Asset_type_SOUND, Asset_type_GRAPHICSPROGRAM, Asset_type_UNKNOWN };

std::mutex cpuLoadConditionMutex;
std::mutex partialLoadCpuMutex;
std::condition_variable cpuLoadDoneCondition;
public:
enum AssetTypes { Asset_type_DIRECTORY, Asset_type_MODEL, Asset_type_TEXTURE, Asset_type_SKYMAP, Asset_type_SOUND, Asset_type_GRAPHICSPROGRAM, Asset_type_UNKNOWN };

struct EmbeddedTexture {
char format[9] = "\0";
Expand Down

0 comments on commit 808ab3f

Please sign in to comment.