WriteFloat

This function writes a float value to a stream.

Syntax

Parameters

Example

#include "Leadwerks.h"

using namespace Leadwerks;

int main(int argc, const char *argv[])
{
std::string path = "MyFile.dat";

Stream* stream = FileSystem::WriteFile(path);
if (stream==NULL) Debug::Error("Failed to write file.");

stream->WriteFloat(2);
stream->Seek(0);
System::Print(stream->ReadFloat());

stream->Release();

return 0;
}