some renames, make space for new layout test

This commit is contained in:
Torsten Ruger 2015-11-07 22:26:39 +02:00
parent cad3deab3a
commit 969fa758a1
4 changed files with 23 additions and 0 deletions

23
codes/a_layout.soml Normal file
View File

@ -0,0 +1,23 @@
class Layout < Object
Class object_class()
return get_internal(2)
end
end
class Object
Layout get_layout()
return get_internal(1)
end
Class get_class()
Layout l = get_layout()
return l.object_class()
end
int main()
return get_class()
end
end