8 lines
189 B
Java
8 lines
189 B
Java
package fabrik.simulator.pic16f84.interfaces;
|
|
|
|
import fabrik.simulator.pic16f84.PICComponents;
|
|
|
|
public interface PICComponentInterface {
|
|
void initialize(PICComponents picComponents);
|
|
}
|