using System.Collections; using System.Collections.Generic; using System; using UnityEngine; namespace VoxelBusters.CoreLibrary { /// /// The MimeType class is a collection of most commonly used MIME types. /// /// /// MIME types enable apps to recognize the filetype of a file. /// public static class MimeType { #region Constants /// The MIME value used to determine plain text file. (Readonly) public const string kPlainText = "text/plain"; /// The MIME value used to determine normal web pages. (Readonly) public const string kHtmlText = "text/html"; /// The MIME value used to determine javascript content. (Readonly) public const string kJavaScriptText = "text/javascript"; /// The MIME value used to determine jpg image file. (Readonly) public const string kJPGImage = "image/jpeg"; /// The MIME value used to determine png image file. (Readonly) public const string kPNGImage = "image/png"; /// The MIME value used to determine Adobe® PDF documents. (Readonly) public const string kPDF = "application/pdf"; #endregion } }