12 lines
322 B
C#
12 lines
322 B
C#
using Godot;
|
|
using System;
|
|
|
|
[GlobalClass]
|
|
public partial class ItemResource : Resource
|
|
{
|
|
[Export] public string ItemName{ get; private set; }
|
|
[Export] public string Description{ get; private set; }
|
|
[Export] public Texture2D Icon{ get; private set; }
|
|
[Export] public bool Stackable{ get; private set; }
|
|
}
|