mirror of
https://github.com/Wincent01/InfectedRose.git
synced 2025-12-17 18:15:49 -06:00
14 lines
248 B
C#
14 lines
248 B
C#
using System;
|
|
|
|
namespace InfectedRose.Interface;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ModTypeAttribute : Attribute
|
|
{
|
|
public string Type { get; set; }
|
|
|
|
public ModTypeAttribute(string type)
|
|
{
|
|
Type = type;
|
|
}
|
|
} |