first commit

This commit is contained in:
2026-06-14 01:40:04 +02:00
commit 5511354783
4787 changed files with 103543 additions and 0 deletions
@@ -0,0 +1,3 @@
on(release){
client.OnClicked(this);
}
@@ -0,0 +1,11 @@
on(rollOut){
if(isOver)
{
isOver = false;
if(isEnabled)
{
box.gotoAndPlay("_up");
}
client.OnRollOut(this);
}
}
@@ -0,0 +1,11 @@
on(rollOver){
if(!isOver)
{
isOver = true;
if(isEnabled)
{
box.gotoAndPlay("_over");
}
client.OnRollOver(this);
}
}