Update README.md
This commit is contained in:
parent
ad471c9306
commit
32a8d7ad8f
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -1,6 +1,17 @@
|
||||||
# EntityLib
|
# EntityLib
|
||||||
EntityLib is a PacketEvents addon that provides an abstraction over raw entity data and packets to make it easier to work with entities as a whole.
|
EntityLib is a PacketEvents addon that provides an abstraction over raw entity data and packets to make it easier to work with entities as a whole.
|
||||||
|
|
||||||
|
```groovy
|
||||||
|
//https://jitpack.io/#Tofaa2/EntityLib/
|
||||||
|
repositories {
|
||||||
|
maven { url 'https://jitpack.io' }
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation 'com.github.Tofaa2:EntityLib:<release-tag-here>'
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
- Full EntityMeta support
|
- Full EntityMeta support
|
||||||
|
@ -8,6 +19,7 @@ EntityLib is a PacketEvents addon that provides an abstraction over raw entity d
|
||||||
- Keeping track of entities.
|
- Keeping track of entities.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
For more realistic examples, please take a look at the `test-plugin` module. It has an example `Bukkit` plugin that uses EntityLib.
|
For more realistic examples, please take a look at the `test-plugin` module. It has an example `Bukkit` plugin that uses EntityLib.
|
||||||
|
|
Loading…
Reference in a new issue