コード例 #1
0
ファイル: ProfilingEvent.cs プロジェクト: yongaru/fuse-studio
 public ProfilingEventPop(ProfilingEventPush push, long ticks)
     : base(ticks)
 {
     _push = push;
 }
コード例 #2
0
ファイル: ProfilingEvent.cs プロジェクト: yongaru/fuse-studio
 public static ProfilingEventPop Pop(ProfilingEventPush push, long endTicks)
 {
     return(new ProfilingEventPop(push, endTicks));
 }