Skip to content

Commit

Permalink
Update Instance.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Madman10K authored Oct 24, 2024
1 parent ea6acba commit 523772c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Instance.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ namespace UntitledGameSystemManager
{
struct Container
{
using Pin = std::pair<std::string, bool>;
using Pin = std::pair<FString, bool>;

std::string name;
std::vector<Pin> pins;
FString name;
TVector<Pin> pins;
};

struct RunWorkers
Expand All @@ -52,7 +52,7 @@ namespace UntitledGameSystemManager

void loadConfigData();

std::vector<Container> containers;
TVector<Container> containers;
Container* selectedContainer = nullptr;

UImGui::FString configDir;
Expand Down

0 comments on commit 523772c

Please sign in to comment.