Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Utils/SupportedExtensions.cs
2264 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

namespace osu.Game.Utils
{
    public static class SupportedExtensions
    {
        public static readonly string[] VIDEO_EXTENSIONS = [@".mp4", @".mov", @".avi", @".flv", @".mpg", @".wmv", @".m4v"];
        public static readonly string[] AUDIO_EXTENSIONS = [@".mp3", @".ogg", @".wav"];
        public static readonly string[] IMAGE_EXTENSIONS = [@".jpg", @".jpeg", @".png"];

        public static readonly string[] ALL_EXTENSIONS =
        [
            ..VIDEO_EXTENSIONS,
            ..AUDIO_EXTENSIONS,
            ..IMAGE_EXTENSIONS
        ];
    }
}