7 lines
127 B
Haxe
7 lines
127 B
Haxe
package kernel.peripherals;
|
|
|
|
interface IPeripheral {
|
|
public function getAddr(): String;
|
|
public function getType(): String;
|
|
}
|