Skip to content

Instantly share code, notes, and snippets.

@llint
Created July 10, 2024 08:27
Show Gist options
  • Save llint/e2afc9776ae71997c9ab1a3638ffd17b to your computer and use it in GitHub Desktop.
Save llint/e2afc9776ae71997c9ab1a3638ffd17b to your computer and use it in GitHub Desktop.
${ProjectRoot}/TypeScript/ScriptBindings/Game/Blueprints/
import * as UE from 'ue'
interface B_PlayerController_C extends UE.Game.Blueprints.B_PlayerController.B_PlayerController_C {};
class B_PlayerController_C {
ReceiveBeginPlay() {
console.log(`****************** B_PlayerController_C.ReceiveBeginPlay: from B_PlayerController_C.ts`);
this.Print("****************** B_PlayerController_C.ReceiveBeginPlay: from B_PlayerController_C.ts");
}
};
export { B_PlayerController_C };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment