Lillero-processor is an annotation processor made to simplify development of [Lillero](https://git.fantabos.co/lillero) patches, minimising the amount of boilerplate code needed.
## How to use
First things first, add the processor and its dependencies to your `build.gradle`:
```groovy
dependencies {
implementation 'ftbsc.lll:processor:0.1.0'
annotationProcessor 'ftbsc.lll:processor:0.1.0'
}
```
That's about all the effort you need to put in! Now, this:
```java
package example.patches;
import net.minecraft.client.Minecraft;
import ftbsc.lll.processor.annotations.*;
@Patch(value = Minecraft.class, reason = "crash the game as soon as it loads")