8 lines
134 B
C#
8 lines
134 B
C#
using Godot.Collections;
|
|
|
|
namespace Learn.Models;
|
|
|
|
public class Item
|
|
{
|
|
public Dictionary<string, string> Info { get; } = new ();
|
|
} |