示例#1
0
 public void Intro(Graphics graphics, long duration, long timestamp)
 {
     plugin.SetReplayConfig(OverlayData);
     plugin.SetGraphics(graphics);
     plugin.InjectFields(timestamp, Settings.Default.PreferredDriverNames.Split(new char[] { ',', ';' }));
     plugin.DrawIntroFlashCard(duration);
 }
示例#2
0
        void DrawActionIntro(Graphics g)
        {
            if (PluginProxy == null)
            {
                return;
            }

            PluginProxy.SetGraphics(g);
            PluginProxy.InjectFields(timestamp, new string[0]);
            PluginProxy.DrawIntroFlashCard(Duration);
        }