I want a client to be able to delete a ghost they own. Is it better to:
- Set a field like "PleaseDeleteMe" on a syhnchronized ghost component and make a system on the server to read that field and delete the entity?
- Use a separate RPC? If I use an RPC how do I refer to the entity I want to delete? If I just have an
Entityreference in the RPC will that reference be valid on the server side too? If not is there a better alternative?