2022-12-02 18:19:58 +01:00
|
|
|
package {
|
2020-01-01 21:29:24 +01:00
|
|
|
import flash.geom.*;
|
|
|
|
|
2022-12-02 18:19:58 +01:00
|
|
|
public class blockclass {
|
2020-01-01 21:29:24 +01:00
|
|
|
public function blockclass():void {
|
|
|
|
rect = new Rectangle();
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function clear():void{
|
|
|
|
active = false;
|
|
|
|
type = 0; trigger=0;
|
|
|
|
|
|
|
|
xp = 0; yp = 0; wp = 0; hp = 0;
|
|
|
|
rect.x = xp; rect.y = yp; rect.width = wp; rect.height = hp;
|
|
|
|
|
|
|
|
prompt = ""; script = ""; r = 0; g = 0; b = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rectset(xi:int, yi:int, wi:int, hi:int):void {
|
|
|
|
rect.x = xi; rect.y = yi; rect.width = wi; rect.height = hi;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Fundamentals
|
|
|
|
public var active:Boolean;
|
|
|
|
public var rect:Rectangle;
|
|
|
|
public var type:int;
|
|
|
|
public var trigger:int;
|
|
|
|
public var xp:int, yp:int, wp:int, hp:int;
|
|
|
|
public var script:String, prompt:String;
|
|
|
|
public var r:int, g:int, b:int;
|
|
|
|
}
|
|
|
|
};
|