19 lines
226 B
C#
19 lines
226 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.AppKit
|
||
|
{
|
||
|
public class NSAnimationEventArgs : EventArgs
|
||
|
{
|
||
|
public double Progress
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public NSAnimationEventArgs(double progress)
|
||
|
{
|
||
|
Progress = progress;
|
||
|
}
|
||
|
}
|
||
|
}
|