| 665 | |
| 666 | #if WITH_EDITOR |
| 667 | void UFlowAsset::AddCustomInput(const FName& EventName) |
| 668 | { |
| 669 | if (!CustomInputs.Contains(EventName)) |
| 670 | { |
| 671 | CustomInputs.Add(EventName); |
| 672 | } |
| 673 | } |
| 674 | |
| 675 | void UFlowAsset::RemoveCustomInput(const FName& EventName) |
| 676 | { |
nothing calls this directly
no outgoing calls
no test coverage detected