Added new item generation, v1.4.0

This commit is contained in:
Nicola Sovic
2022-07-09 18:38:54 +02:00
parent b3af7501a5
commit 8dbc177dcb
8 changed files with 268 additions and 145 deletions

View File

@@ -0,0 +1,21 @@
using Newtonsoft.Json.Linq;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Assets.Scripts
{
public class Book : Item
{
public Book(int luck) : base(luck)
{
}
public Book(JToken json) : base(json)
{
}
}
}