package o1game.utils /** Converts this string to an array of bytes (probably for transmission). * * @param str the string to convert * @return an array of bytes representing the string in UTF8. */ def stringToByteArray(str: String): Array[Byte] = str.toVector.map(_.toByte).toArray