9 lines
314 B
C#
9 lines
314 B
C#
using KitsuneCafe.ItemSystem;
|
|
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
|
|
{
|
|
/// <summary>
|
|
/// Function x 2 of type `Item`. Inherits from `AtomFunction<Item, Item>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-sand")]
|
|
public abstract class ItemItemFunction : AtomFunction<Item, Item> { }
|
|
}
|