Prechádzať zdrojové kódy

Create instruction classes

DricomDragon 5 rokov pred
rodič
commit
d9fb5a9f97

+ 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
+}
+