39 lines
879 B
C#
39 lines
879 B
C#
|
using System;
|
||
|
using TrueCraft.API.Networking;
|
||
|
|
||
|
namespace TrueCraft.API
|
||
|
{
|
||
|
public class MetadataFloat : MetadataEntry
|
||
|
{
|
||
|
public override byte Identifier { get { return 3; } }
|
||
|
public override string FriendlyName { get { return "float"; } }
|
||
|
|
||
|
public float Value;
|
||
|
|
||
|
public static implicit operator MetadataFloat(float value)
|
||
|
{
|
||
|
return new MetadataFloat(value);
|
||
|
}
|
||
|
|
||
|
public MetadataFloat()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public MetadataFloat(float value)
|
||
|
{
|
||
|
Value = value;
|
||
|
}
|
||
|
|
||
|
public override void FromStream(IMinecraftStream stream)
|
||
|
{
|
||
|
Value = stream.ReadSingle();
|
||
|
}
|
||
|
|
||
|
public override void WriteTo(IMinecraftStream stream, byte index)
|
||
|
{
|
||
|
stream.WriteUInt8(GetKey(index));
|
||
|
stream.WriteSingle(Value);
|
||
|
}
|
||
|
}
|
||
|
}
|