Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 949 Bytes

getting-started.md

File metadata and controls

32 lines (22 loc) · 949 Bytes

Events

Arcade implements a simple and modular events system for commonly used events.

Most of the built-in events are aimed towards minigame development; most of the events are player related events.

The modular design easily allows you to implement your own events which can be used alongside the built-in events' system.

Adding to Dependencies

The events api depends on the arcade utilities module; it's recommended that you include both of these.

repositories {
    maven("https://maven.supersanta.me/snapshots")
}

dependencies {
    include(modImplementation("net.casualchampionships:arcade-events-server:0.4.0-beta.1+1.21.4")!!)

    include(modImplementation("net.casualchampionships:arcade-event-registry:0.4.0-beta.1+1.21.4")!!)
    include(modImplementation("net.casualchampionships:arcade-utils:0.4.0-beta.1+1.21.4")!!)
}

Usage