1
0

Implement BGSCALE(2)

This commit is contained in:
otya128
2016-12-31 21:49:20 +09:00
parent 3884116185
commit 166193764b
2 changed files with 13 additions and 0 deletions

View File

@@ -187,6 +187,11 @@ class BG
this.scalex = x;
this.scaley = y;
}
void getScale(out double x, out double y)
{
x = this.scalex;
y = this.scaley;
}
void rot(int rot)
{
this.r = rot;