Skip to content

Commit

Permalink
Add missing _API
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Aug 6, 2024
1 parent 0291650 commit 8dac0da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/UEST/Public/ScopedGame.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ enum class EScopedGameType : uint8
Empty,
};

class FScopedGameInstance : FNoncopyable
class UEST_API FScopedGameInstance : FNoncopyable
{
TSubclassOf<UGameInstance> GameInstanceClass;

Expand Down Expand Up @@ -61,7 +61,7 @@ class FScopedGameInstance : FNoncopyable
}
};

class FScopedGame
class UEST_API FScopedGame
{
TSubclassOf<UGameInstance> GameInstanceClass;
bool bGarbageCollectOnDestroy = true;
Expand Down
2 changes: 1 addition & 1 deletion Source/UEST/Public/UEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace UEST

template<typename T>
// TODO: Make this FNoncopyable?
struct IMatcher
struct UEST_API IMatcher
{
virtual ~IMatcher() = default;

Expand Down

0 comments on commit 8dac0da

Please sign in to comment.