14 lines
251 B
C#
14 lines
251 B
C#
|
using System;
|
||
|
|
||
|
namespace RoR2.ContentManagement;
|
||
|
|
||
|
public class TargetAssetNameAttribute : Attribute
|
||
|
{
|
||
|
public readonly string targetAssetName;
|
||
|
|
||
|
public TargetAssetNameAttribute(string targetAssetName)
|
||
|
{
|
||
|
this.targetAssetName = targetAssetName;
|
||
|
}
|
||
|
}
|