Browse Source

Create instruction classes

DricomDragon 5 years ago
parent
commit
d9fb5a9f97
1 changed files with 17 additions and 0 deletions
  1. 17 0
      logoPlayer/galgas-sources/logoPlayer-semantics.galgas

+ 17 - 0
logoPlayer/galgas-sources/logoPlayer-semantics.galgas

@@ -3,3 +3,20 @@ map @routineMap {
   search searchKey error message "the '%K' routine is not declared"
 }
 
+abstract class @instruction {
+}
+
+class @penUp : @instruction {
+}
+
+class @penDown : @instruction {
+}
+
+class @forward : @instruction {
+    @luint mLength
+}
+
+class @rotate : @instruction {
+    @luint mAngle
+}
+