mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
13 lines
No EOL
221 B
C#
13 lines
No EOL
221 B
C#
using System;
|
|
|
|
namespace Mesen.Debugger.Utilities
|
|
{
|
|
public class IconFileAttribute : Attribute
|
|
{
|
|
public string Icon { get; }
|
|
public IconFileAttribute(string icon)
|
|
{
|
|
Icon = "Assets/" + icon + ".png";
|
|
}
|
|
}
|
|
} |