13 lines
394 B
C#
13 lines
394 B
C#
namespace Sasalka;
|
|
|
|
[GameResource( "Base Item Definition", "inv", "", Category = "Sasalka", Icon = "inventory_2" )]
|
|
public class BaseItemDefinition : GameResource
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
[ResourceType( "prefab" )] public GameObject Prefab { get; set; }
|
|
public Texture ImageTexture { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
}
|