13 lines
160 B
C#
13 lines
160 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace HQFPSWeapons
|
|
{
|
|
[Serializable]
|
|
public struct ItemDescription
|
|
{
|
|
[Multiline]
|
|
public string Description;
|
|
}
|
|
}
|