mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
34 lines
814 B
C#
34 lines
814 B
C#
using LinePutScript.Converter;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VPet_Simulator.Core;
|
|
|
|
namespace VPet_Simulator.Windows.Interface
|
|
{
|
|
public class Food : IFood
|
|
{
|
|
[Line]
|
|
public int Exp { get; set; }
|
|
[Line]
|
|
public double Strength { get; set; }
|
|
[Line]
|
|
public double StrengthFood { get; set; }
|
|
[Line]
|
|
public double StrengthDrink { get; set; }
|
|
[Line]
|
|
public double Feeling { get; set; }
|
|
[Line]
|
|
public double Health { get; set; }
|
|
[Line]
|
|
public double Likability { get; set; }
|
|
/// <summary>
|
|
/// 食物价格
|
|
/// </summary>
|
|
[Line]
|
|
public double Price { get; set; }
|
|
}
|
|
}
|