I am using RakNet for networking and I need to transmit float values. The problem is, that I can only send single bytes. Since float is composed out of 4 bytes, I thought it must be possible, to tear the float down into these four bytes and send them. After that, I want to compose them together again to a float.
How do I do that?