PotatoPlan/Game1/Sources/Crops/Crops.cs
2020-05-03 22:28:52 +02:00

64 lines
989 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
class Crops
{
public int x;
public int y;
public int Status;
private int cropType;
private int Timer;
private Random r;
public void updateCrop()
{
if (Status != 0)
{
Timer--;
}
}
public int getCropTimer()
{
return Timer;
}
public int getCostOnMovement()
{
if (Status == 1)
{
return 1;
}
else if (Status == 2)
{
return 5;
}
else if (Status == 3)
{
return 20;
}
else
{
return 30;
}
}
public void setPosition(int newx, int newy)
{
x = newx;
y = newy;
}
public void setCropType(int Type)
{
}
}