mirror of
https://github.com/NovaSquirrel/Mesen-SX.git
synced 2025-04-02 10:32:06 -04:00
15 lines
268 B
C#
15 lines
268 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.GUI.Config
|
|
{
|
|
public class WatchWindowConfig
|
|
{
|
|
public Size WindowSize;
|
|
public Point WindowLocation;
|
|
}
|
|
}
|