Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-baumann authored Apr 17, 2020
1 parent a84538b commit 17a5a5d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ Console.WriteLine($"Titlepack: {metadata.Titlepack}");

### Implementation of chunks and structs

For almost all use cases, you should never have the need to implement additional chunks for parsing. If you should need additional functionality or just want to contribute to the project to make the parser more complete,

This library uses various methods to make implementing chunk and custom struct layouts as easy as possible. For most chunks, it's sufficient to just define the chunk/struct as a class with the fields decorated with the `[Property]` and the chunk/struct with the `[Chunk(0xCHUNKID)]`/`[CustomStruct]` attribute.
For most use cases, you should never have the need to implement additional chunks for parsing. If you should need additional functionality or just want to contribute to the project to make the parser more complete, this library provides various methods to make implementing chunk and custom struct layouts as easy as possible. For most chunks, it's sufficient to just define the chunk/struct as a class with the fields decorated with the `[Property]` and the chunk/struct with the `[Chunk(0xCHUNKID)]`/`[CustomStruct]` attribute.

A typical example of how an implementation of a chunk looks like is the chunk `0x03043308`:

Expand Down

0 comments on commit 17a5a5d

Please sign in to comment.