This commit is contained in:
Thinkofdeath 2016-03-16 18:01:33 +00:00
parent 35306c62e1
commit 75654bbc66
2 changed files with 2 additions and 3 deletions

View File

@ -15,7 +15,6 @@
use nbt;
use protocol::Serializable;
use std::io;
use std::io::{Read, Write};
use byteorder::{BigEndian, WriteBytesExt, ReadBytesExt};
#[derive(Debug)]

View File

@ -15,7 +15,7 @@
use std::collections::HashMap;
use std::marker::PhantomData;
use std::io;
use std::io::{Read, Write};
use std::io::Write;
use std::fmt;
use protocol;
use protocol::Serializable;
@ -191,7 +191,7 @@ impl Default for Metadata {
}
#[derive(Debug)]
enum Value {
pub enum Value {
Byte(i8),
Int(i32),
Float(f32),