superyuuki / yuukomponent

component framework for block game
2 stars 0 forks source link

add slots ;) #4

Closed github-actions[bot] closed 2 years ago

github-actions[bot] commented 2 years ago

add slots ;)

https://github.com/superyuuki/yuukomponent/blob/4d662031f33d9702cf760a7a6dd5172942e1acb8/yuukomponent-api/src/main/java/com/superyuuki/yuukomponent/api/config/data/ConfigSection.java#L10


package com.superyuuki.yuukomponent.api.config.data;

import java.util.List;

/**
 * Config representation of a component
 */
public interface ConfigSection {

    //TODO add slots ;)

    List<String> behaviors();
    DataSection data();

}

b866731eccd9c58486863fa4391b0802eb264ec2