Created
November 26, 2016 23:38
-
-
Save Aceeri/f85cad5cd4dc8dcfb03a182a2e1b1f13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trait Serializer<T> { | |
| /// Serialize a part of the world into a buffer. | |
| fn serialize(&World, &mut T) { } | |
| /// Deserialize a part of the world from a buffer. | |
| fn deserialize(&mut World, &T) { } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment