21 lines
310 B
C#
21 lines
310 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
} |