Skip to content

Core-Pluginss/HytaleBase

Repository files navigation

HytaleBase

Use in your project:

repositories {
    mavenCentral()
    
    mavenLocal() // <-- Add this
    
    // ... All your other repositories
}

dependencies {
    // No need for HytaleServer.jar, its included in HytaleBase.

    implementation("core.tastycake:hytale-base:lts") // <-- Add this
    // or
    implementation(files("path/to/jar"))
    
    // ... All your other dependencies
}
  • Step 3: In your plugin's setup() method add the base initialization:
// Java
@Override
protected void setup() {
    HytaleBase.Companion.init(this); // <-- Add this

    // ... The rest of your code
}
// Kotlin
override fun setup() {
    HytaleBase.init(this); // <-- Add this

    // ... The rest of your code
}

About

The library to be used in future plugins

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages