mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 00:07:49 +01:00
feat: add SignatureHelper
This commit is contained in:
parent
8624c6cffa
commit
2d5a54b92c
11 changed files with 502 additions and 0 deletions
17
Dalamud/Utility/Signatures/Wrappers/IFieldOrPropertyInfo.cs
Executable file
17
Dalamud/Utility/Signatures/Wrappers/IFieldOrPropertyInfo.cs
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
|
||||
namespace Dalamud.Utility.Signatures.Wrappers
|
||||
{
|
||||
internal interface IFieldOrPropertyInfo
|
||||
{
|
||||
string Name { get; }
|
||||
|
||||
Type ActualType { get; }
|
||||
|
||||
bool IsNullable { get; }
|
||||
|
||||
void SetValue(object? self, object? value);
|
||||
|
||||
T? GetCustomAttribute<T>() where T : Attribute;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue