mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-12 20:01:25 +01:00
9 lines
167 B
Java
9 lines
167 B
Java
|
package com.vectron.fcl.types;
|
||
|
|
||
|
public interface Word extends Obj {
|
||
|
void enter();
|
||
|
String name();
|
||
|
void visible(boolean isVisible);
|
||
|
boolean visible();
|
||
|
}
|