Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. void FMenuBuilder::ApplyHook(FName InExtensionHook, EExtensionHook::Position HookPosition)
  2. {
  3. // this is a virtual function to get a properly typed "this" pointer
  4. auto& Extender = ExtenderStack.Top();
  5. if (InExtensionHook != NAME_None && Extender.IsValid())
  6. {
  7. Extender->Apply(InExtensionHook, HookPosition, *this);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement