13 lines
314 B
Kotlin
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
|
|
}
|