PotatoPlan/Game1/Sources/Objects/Fertilizer.cs

15 lines
333 B
C#
Raw Normal View History

2020-05-10 01:38:08 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Fertilizer
{
public int ID { get; set; }
public string Name { get; set; }
public float Nitrogen { get; set; }
public float Phosphorus { get; set; }
public float Potassium { get; set; }
}