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

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

            player = null;
        }