19 lines
239 B
C#
19 lines
239 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreAnimation
|
||
|
{
|
||
|
public class CAAnimationStateEventArgs : EventArgs
|
||
|
{
|
||
|
public bool Finished
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public CAAnimationStateEventArgs(bool finished)
|
||
|
{
|
||
|
Finished = finished;
|
||
|
}
|
||
|
}
|
||
|
}
|