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,6 @@
on(press){
if(client != undefined)
{
client.OnTimerPressed(this);
}
}
@@ -0,0 +1,6 @@
on(release){
if(client != undefined)
{
client.OnTimerClicked(this);
}
}
@@ -0,0 +1,10 @@
on(rollOut){
if(mouseOverObserver != undefined)
{
mouseOverObserver.OnTimerRollOut(this);
}
if(client != undefined)
{
client.OnTimerRollOut(this);
}
}
@@ -0,0 +1,10 @@
on(rollOver){
if(mouseOverObserver != undefined)
{
mouseOverObserver.OnTimerRollOver(this);
}
if(client != undefined)
{
client.OnTimerRollOver(this);
}
}