Skip to content

Commit

Permalink
Refactoring classes
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyTurtle committed Oct 17, 2018
1 parent 281ca10 commit a0e6477
Show file tree
Hide file tree
Showing 21 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/SimpleNode.h"
#include "SimpleNode.h"
#include "YAGraph.h"
#include "ActionNode.generated.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/ActionNode.h"
#include "ActionNode.h"
#include "StoreBoolean.generated.h"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/ActionNode.h"
#include "ActionNode.h"
#include "StoreInteger.generated.h"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/SimpleNode.h"
#include "SimpleNode.h"
#include "StartNode.generated.h"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/YANode.h"
#include "YANode.h"
#include "FlowControlNode.generated.h"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/BinarySelectNode.h"
#include "BinarySelectNode.h"
#include "BooleanSelector.generated.h"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/MultiNodeSelector.h"
#include "MultiNodeSelector.h"
#include "NthSelector.generated.h"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#pragma once

#include "CoreMinimal.h"
#include "Nodes/FlowControlNode.h"
#include "FlowControlNode.h"
#include "YAGraph.h"
#include "MultiNodeSelector.generated.h"

Expand Down
5 changes: 5 additions & 0 deletions Source/YetOtherGraphAssets/YetOtherGraphAssets.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ public YetOtherGraphAssets(ReadOnlyTargetRules Target) : base(Target)
"YetOtherGraphAssets/Private",
"YetOtherGraphAssets/Private/Graphs",
"YetOtherGraphAssets/Private/Nodes",
"YetOtherGraphAssets/Private/Nodes/ActionNodes",
"YetOtherGraphAssets/Private/Nodes/ActionNodes/Implementations",
"YetOtherGraphAssets/Private/Nodes/EmptyNodes",
"YetOtherGraphAssets/Private/Nodes/FlowControlNodes",
"YetOtherGraphAssets/Private/Nodes/FlowControlNodes/Implementations",
"YetOtherGraphAssets/Private/Utility",
}
);
Expand Down

0 comments on commit a0e6477

Please sign in to comment.