zombie_mp/Assets/HQ FPS Weapons/Scripts/_Events/Attributes/Icon.cs
Sewmina Dilshan 68183e5317 initial
2021-08-23 13:28:33 +05:30

16 lines
191 B
C#

using System;
using UnityEngine;
namespace HQFPSWeapons
{
public class Icon : PropertyAttribute
{
public readonly int Size;
public Icon(int size = 64)
{
Size = size;
}
}
}