Barely functional IO

This commit is contained in:
Anuken
2020-02-13 19:26:36 -05:00
parent ad248e2e20
commit e3621f44da
68 changed files with 323 additions and 497 deletions

View File

@@ -52,11 +52,16 @@ abstract class EntityComp{
@InternalImpl
abstract boolean serialize();
@MethodPriority(1)
void read(DataInput input) throws IOException{
//TODO dynamic io
afterRead();
}
void write(DataOutput output) throws IOException{
//TODO dynamic io
}
void afterRead(){
}
}