From 9a687f0ffebad80441e036aabe14e7cf80c774d3 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 10 Oct 2023 23:21:23 -0500 Subject: start adding mining to pathfinder --- azalea-core/src/bitset.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'azalea-core/src') diff --git a/azalea-core/src/bitset.rs b/azalea-core/src/bitset.rs index 912216a8..52a34154 100755 --- a/azalea-core/src/bitset.rs +++ b/azalea-core/src/bitset.rs @@ -125,6 +125,11 @@ impl From> for BitSet { } /// A list of bits with a known fixed size. +/// +/// Note that this is primarily meant for fast serialization and deserialization +/// Minecraft, if you don't need that you should use the `fixedbitset` crate +/// since it's approximately 20% faster (since it stores the data as usizes +/// instead of u8s) #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub struct FixedBitSet where -- cgit v1.2.3