Revert "RSR theme covered."

This reverts commit c31d1f1c9d.
This commit is contained in:
Jason Felds
2013-07-18 17:41:24 -04:00
parent da657870d4
commit f5c5648bdd
7 changed files with 59 additions and 148 deletions
@@ -1,16 +1,9 @@
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
InitCommand=function(self)
self:y(-64);
end;
InitCommand=cmd(y,-64);
Def.Quad {
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH - 32, 2);
end;
OnCommand=function(self)
self:diffusealpha(0.5);
end;
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH-32,2);
OnCommand=cmd(diffusealpha,0.5);
};
};
return t