cc-haxe/src/kernel/peripherals/IPeripheral.hx
2023-06-26 19:05:48 +02:00

7 lines
127 B
Haxe

package kernel.peripherals;
interface IPeripheral {
public function getAddr(): String;
public function getType(): String;
}