Update README.md

This commit is contained in:
Gabriel Tofvesson 2018-07-28 01:07:44 +02:00 committed by GitHub
parent 0d1a9f5bf1
commit e63b97fea1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,9 @@
# SyncedVar # SyncedVar: *An annotation-based serialization system*
An annotation-based serialization system Designed to mimic the NetworkedVar and SyncedVar systems found in MLAPI and HLAPI, this library allows serialization of variables to simplify the program flow when sending data between peers. Alternatively, this library can be used to create a "snapshot" of the current state of a set of variables for rollback at a later time.
Designed to mimic the NetworkedVar and SyncedVar systems found in MLAPI and HLAPI ## Features
#Features:
* Module-based serializers * Module-based serializers
* Ability to remove (or override) default serializers * Ability to remove (or override) default serializers
* Support for value delta serialization * Support for value delta serialization
* VarInt compression * VarInt compression
* Booleans are represented as bits (as they should), rather than bytes * Booleans are represented as bits (as they should), rather than bytes, allowing for an 8x compression rate
* Support for custom (per-field) serialization flags