I am having trouble working out what is wrong here.
I have a ship, with a “ship interface”, and a station with a “station interface”. So far it works well, I use the interfaces to call events between them and pass information between them.
When the ship lands on the station, the station calls an event on the Ship that lets the ship know that it’s landed on a station, which in theory will let the ship communicate with the station. THIS part works OK
It’s when I want to call an event on the station from the ship. Basically when I go to add the event within the station that is called from within the ship, well, I can’t add it as an event, only as a function.
I DONT GET this because I have gone back and forward many times to work out why I can call a function in one direction but not the other. I NEED the ship to be able to call an event on the station which is within the interface