コード例 #1
0
 public TimerController(IPresentContext context)
 {
     _context = context;
     _context.Schedule(OnTimer, 0.1f);
 }
コード例 #2
0
 public SplashController(IPresentContext context)
     : base(context)
 {
     context.Schedule(OnTimer, 5);
 }