mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-03 23:46:15 +00:00
16 lines
277 B
C#
16 lines
277 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.GUI.Config
|
|
{
|
|
public class MovieRecordInfo
|
|
{
|
|
public RecordMovieFrom RecordFrom;
|
|
public string Author;
|
|
public string Description;
|
|
}
|
|
}
|