|
| 1 | +// MonoGame - Copyright (C) The MonoGame Team |
| 2 | +// This file is subject to the terms and conditions defined in |
| 3 | +// file 'LICENSE.txt', which is part of this source code package. |
| 4 | + |
| 5 | +using System; |
| 6 | +using Microsoft.Xna.Framework.Graphics; |
| 7 | + |
| 8 | +namespace Microsoft.Xna.Framework.Media |
| 9 | +{ |
| 10 | + public sealed partial class VideoPlayer : IDisposable |
| 11 | + { |
| 12 | + private void PlatformInitialize() |
| 13 | + { |
| 14 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 15 | + } |
| 16 | + |
| 17 | + private Texture2D PlatformGetTexture() |
| 18 | + { |
| 19 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 20 | + } |
| 21 | + |
| 22 | + private void PlatformGetState(ref MediaState result) |
| 23 | + { |
| 24 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 25 | + } |
| 26 | + |
| 27 | + private void PlatformPause() |
| 28 | + { |
| 29 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 30 | + } |
| 31 | + |
| 32 | + private void PlatformResume() |
| 33 | + { |
| 34 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 35 | + } |
| 36 | + |
| 37 | + private void PlatformPlay() |
| 38 | + { |
| 39 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 40 | + } |
| 41 | + |
| 42 | + private void PlatformStop() |
| 43 | + { |
| 44 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 45 | + } |
| 46 | + |
| 47 | + private void PlatformSetIsLooped() |
| 48 | + { |
| 49 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 50 | + } |
| 51 | + |
| 52 | + private void PlatformSetIsMuted() |
| 53 | + { |
| 54 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 55 | + } |
| 56 | + |
| 57 | + private TimeSpan PlatformGetPlayPosition() |
| 58 | + { |
| 59 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 60 | + } |
| 61 | + |
| 62 | + private void PlatformSetVolume() |
| 63 | + { |
| 64 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 65 | + } |
| 66 | + |
| 67 | + private void PlatformDispose(bool disposing) |
| 68 | + { |
| 69 | + throw new NotImplementedException("VideoPlayer is not implemented on this platform."); |
| 70 | + } |
| 71 | + } |
| 72 | +} |
0 commit comments