Added new item generation, v1.4.0
This commit is contained in:
21
Assets/Scripts/Items/Book.cs
Normal file
21
Assets/Scripts/Items/Book.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user