added redstone interface

This commit is contained in:
2022-03-12 22:03:32 +01:00
parent 35be02dbe2
commit a75f86cbc1
4 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package kernel.peripherals;
enum abstract Side(String) to String {
var Top = "top";
var Bottom = "bottom";
var Left = "left";
var Right = "right";
var Front = "front";
var Back = "back";
}