Example #1
0
        public Video(bool fullAAVSimulation)
        {
            Properties.Settings.Default.Reload();

            this.fullAAVSimulation = fullAAVSimulation;
            player = new DxPlayer(Properties.Settings.Default.SimulatorFilePath, Properties.Settings.Default.SimulatorFrameRate, fullAAVSimulation);
            player.StopPlay += player_StopPlay;
        }
Example #2
0
        public void Dispose()
        {
            if (player != null && player.IsRunning)
                player.Stop();

            player = null;
        }