mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 22:58:36 +00:00
10 lines
103 B
Java
10 lines
103 B
Java
package com.iluwatar;
|
|
|
|
public interface State {
|
|
|
|
void onEnterState();
|
|
|
|
void observe();
|
|
|
|
}
|