Extension commit to my previous one
because git screwed up.
This commit is contained in:
parent
1257ce7636
commit
5c9629c4c6
2 changed files with 3 additions and 2 deletions
|
@ -15,12 +15,12 @@ namespace ShiftOS.Objects
|
|||
public string Author { get; set; }
|
||||
}
|
||||
|
||||
public class JobTask
|
||||
public abstract class JobTask
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public int Reward { get; set; }
|
||||
|
||||
public bool Completed { get; set; }
|
||||
public abstract bool IsComplete { get; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -191,6 +191,7 @@
|
|||
<Compile Include="FakeSetupScreen.Designer.cs">
|
||||
<DependentUpon>FakeSetupScreen.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="JobTasks.cs" />
|
||||
<Compile Include="Oobe.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
|
Reference in a new issue