package com.fine.theme.icon; import org.jetbrains.annotations.Nullable; import java.io.InputStream; /** * 资源接口 * * @author vito * @since 11.0 * Created on 2023/11/6 */ public interface IconResource { /** * 获取输入资源流 * * @return 资源流 */ @Nullable InputStream getInputStream(); }