Skip to content

Commit

Permalink
chore: a bit of code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Jun 4, 2024
1 parent d523451 commit 6815c70
Showing 1 changed file with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package dev.ftb.mods.ftbteams.api.property;

import net.minecraft.network.FriendlyByteBuf;

import java.util.function.BiConsumer;

/**
Expand Down Expand Up @@ -52,18 +50,10 @@ public interface TeamPropertyCollection {
*/
<T> void set(TeamProperty<T> key, T value);

/**
* Get the number of properties in this collection.
*
* @return the number of properties
*/
int size();
// /**
// * Write this property collection to the network buffer.
// *
// * @param buffer the network buffer
// */
// void write(FriendlyByteBuf buffer);
//
// /**
// * Read value from the network buffer into this property collection, replacing any existing property values.
// *
// * @param buffer the network buffer
// */
// void read(FriendlyByteBuf buffer);
}

0 comments on commit 6815c70

Please sign in to comment.