Ejemplo n.º 1
0
        public static void CreateSnapshot(TPCEngine.InputManager inputManager)
        {
            if (_snapshotFile == null)
            {
                _snapshotFile = Path.Combine(Application.temporaryCachePath, "input_config.xml");
            }

            InputSaverXML inputSaver = new InputSaverXML(_snapshotFile);

            inputSaver.Save(inputManager.GetSaveParameters());
        }