1
0
forked from s425077/PotatoPlan
JoelForkTest/Game1/Sources/Task.cs
2020-05-03 13:05:05 +02:00

24 lines
461 B
C#

using System;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
namespace Game1.Sources
{
class Task
{
private Vector2 Position;
private int Objective;
private float timer;
public void setTimer(float newTimer)
{
timer = newTimer;
}
public void updateTimer()
{
timer = timer - 1 / 60;
}
}
}