Skip to content

Commit

Permalink
Fix: size first
Browse files Browse the repository at this point in the history
  • Loading branch information
stelzo committed Nov 23, 2022
1 parent 200599f commit 6001a45
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions AnkamaGames/Chunk.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions manifest.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ namespace AnkamaGames;

table Chunk {
hash:[ubyte];
offset:int64;
size:int64;
size:long;
offset:long;
done:bool;
}

table File {
name:string;
size:int64;
size:long;
hash:[ubyte];
chunks:[Chunk];
executable:int8;
Expand Down

0 comments on commit 6001a45

Please sign in to comment.