1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use binary_utils::DataWriter;
use tokio::io::AsyncWrite;

/// Module containing important enums needed by the packets
pub mod important_enums;

/// Packet containing entity metadata
///
/// # Note
///
/// This struct will probably move into the entity metadata library when it is finished
pub struct EntityMetadata(/*entmet_lib::EntityMetadata*/);
impl DataWriter for EntityMetadata {
    async fn write(&self, _writer: &mut (impl AsyncWrite + Unpin)) -> binary_utils::Result<()> {
        todo!()
    }
}