Specifying a PDA can easily be done by the following:
#[account( seeds = [MY_FST_SEED, MY_SND_SEED], bump)]pub my_account: Account<'info, MyCoolAccount>,
This makes the PDA be derived using the current program as the program seed though. How can I specify a PDA owned by a different program?