b348a76db7
It's definitely not working right now. I wouldn't delete your save. I have to implement the tutorial before the OOBE will let you into the game.
26 lines
577 B
C#
26 lines
577 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShiftOS.Objects
|
|
|
|
{
|
|
public class Job
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public List<JobTask> Tasks { get; set; }
|
|
public string Author { get; set; }
|
|
}
|
|
|
|
public class JobTask
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public int Reward { get; set; }
|
|
|
|
public bool Completed { get; set; }
|
|
}
|
|
}
|