2022-02-03 15:39:49 +01:00

7 lines
120 B
Java

package com.hbm.interfaces;
public interface IAnimatedDoor extends IDoor {
public void handleNewState(byte state);
}