Files
LuaCsForBarotraumaEP/Libraries/MonoGame.Framework/Src/MonoGame.Framework.Content.Pipeline/H264Importer.cs
T
2019-06-25 16:00:44 +03:00

21 lines
661 B
C#

// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
namespace Microsoft.Xna.Framework.Content.Pipeline
{
[ContentImporter(".mp4", DisplayName = "H.264 Video - MonoGame", DefaultProcessor = "VideoProcessor")]
public class H264Importer : ContentImporter<VideoContent>
{
public H264Importer()
{
}
public override VideoContent Import(string filename, ContentImporterContext context)
{
var content = new VideoContent(filename);
return content;
}
}
}