mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-07 08:26:34 -08:00
Co-authored-by: Poggu <poggu@seznam.cz> Co-authored-by: KillStr3aK <statser07@gmail.com> Co-authored-by: Poggu <45881722+Poggicek@users.noreply.github.com>
16 lines
426 B
C#
16 lines
426 B
C#
using System;
|
|
|
|
namespace CounterStrikeSharp.API.Core.Attributes.Registration;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
|
public class EntityOutputHookAttribute : Attribute
|
|
{
|
|
public string Classname { get; }
|
|
public string OutputName { get; }
|
|
|
|
public EntityOutputHookAttribute(string classname, string outputName)
|
|
{
|
|
Classname = classname;
|
|
OutputName = outputName;
|
|
}
|
|
} |