mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-26 15:57:22 +01:00
12 lines
235 B
Java
12 lines
235 B
Java
package com.gpl.rpg.atcontentstudio.model.bookmarks;
|
|
|
|
import com.gpl.rpg.atcontentstudio.model.ProjectTreeNode;
|
|
|
|
public interface BookmarkNode extends ProjectTreeNode {
|
|
|
|
public void save();
|
|
|
|
public void delete();
|
|
|
|
}
|