Is there a way to add Entity Components in a generic way? I'm trying to achieve an RPC call that will say "Hey, add this entity component to this ghost entity"
Right now I'm just making specific RPCs that will do it, but I'd like to be able to send something like a string and the receiver would add it that way. Only way I can think of is by using reflection on the receiving end.