Archived
1
0
Fork 0
This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
uranos/uranos-api/src/main/kotlin/space/uranos/recipe/Recipe.kt

13 lines
314 B
Kotlin

/*
* Copyright 2020-2021 Moritz Ruth and Uranos contributors
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file
*/
package space.uranos.recipe
import space.uranos.RegistryItem
sealed class Recipe: RegistryItem {
abstract val group: String
// TODO
}