first commit
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
on(press){
|
||||
if(client != undefined)
|
||||
{
|
||||
client.OnTimerPressed(this);
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(release){
|
||||
if(client != undefined)
|
||||
{
|
||||
client.OnTimerClicked(this);
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
on(rollOut){
|
||||
if(mouseOverObserver != undefined)
|
||||
{
|
||||
mouseOverObserver.OnTimerRollOut(this);
|
||||
}
|
||||
if(client != undefined)
|
||||
{
|
||||
client.OnTimerRollOut(this);
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
on(rollOver){
|
||||
if(mouseOverObserver != undefined)
|
||||
{
|
||||
mouseOverObserver.OnTimerRollOver(this);
|
||||
}
|
||||
if(client != undefined)
|
||||
{
|
||||
client.OnTimerRollOver(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user