Is there a way to load texture using base64 format?
It is easy actually, but info about it was hard to find. Maybe it will help someone
byte[] bytes = Convert.FromBase64String("...");
test = Texture2D.FromStream(GraphicsDevice, new MemoryStream(bytes));