You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
267 B
18 lines
267 B
1 year ago
|
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 {
|
||
|
@Nullable
|
||
|
InputStream getInputStream();
|
||
|
}
|