Move Files, remove 2D world gen
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Project.Tasks.Editor
|
||||
{
|
||||
internal static class TaskBoardConstants
|
||||
{
|
||||
public const int MinutesPerHour = 60;
|
||||
public const int HoursPerDay = 8;
|
||||
public const int MinutesPerDay = HoursPerDay * MinutesPerHour;
|
||||
public const int WorkDaysPerWeek = 5;
|
||||
public const int MinutesPerWeek = WorkDaysPerWeek * MinutesPerDay;
|
||||
|
||||
public static readonly string[] Statuses = { "BackLog", "ToDo", "InProgress", "Review", "Done" };
|
||||
public static readonly string[] Priorities = { "Lowest", "Low", "Medium", "High", "Highest" };
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
internal sealed class TaskRecord
|
||||
{
|
||||
public string Id;
|
||||
public string Title;
|
||||
public string Status;
|
||||
public string Priority;
|
||||
public string Area;
|
||||
public string Owner;
|
||||
public string Created;
|
||||
public string Updated;
|
||||
public string ExecutionTime;
|
||||
public string RelativeFilePath;
|
||||
public string AbsoluteFilePath;
|
||||
public string IndexSummary;
|
||||
public string TaskSummary;
|
||||
public int EstimatedMinutes = -1;
|
||||
public string Header;
|
||||
public string Why;
|
||||
public string ExpectedOutcome;
|
||||
public string CurrentContext;
|
||||
public string AcceptanceCriteria;
|
||||
public string Verification;
|
||||
public string Risks;
|
||||
public string HumanDecisions;
|
||||
public string DecisionLog;
|
||||
public string HandoffNotes;
|
||||
public bool FileExists;
|
||||
public bool DetailsLoaded;
|
||||
public int IndexLineNumber = -1;
|
||||
public readonly List<string> ValidationMessages = new List<string>();
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
internal sealed class TaskBoardData
|
||||
{
|
||||
public string ProjectRoot;
|
||||
public string TasksDirectory;
|
||||
public string IndexPath;
|
||||
public string OwnersConfigPath;
|
||||
public readonly List<TaskRecord> Tasks = new List<TaskRecord>();
|
||||
public readonly List<string> Warnings = new List<string>();
|
||||
public readonly List<string> OwnerPresets = new List<string>();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4716897eb71185742ad590f2a59df8e3
|
||||
@@ -0,0 +1,20 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: acfa62607cc78b8499e371559154647f, type: 3}
|
||||
m_Name: TaskBoardOwners
|
||||
m_EditorClassIdentifier: Assembly-CSharp-Editor::Project.Tasks.Editor.TaskBoardOwnersConfig
|
||||
owners:
|
||||
- unassigned
|
||||
- pretty_kotik
|
||||
- gitenax
|
||||
- abysscion
|
||||
- Firinor
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 84c93775036fa9242b5e5e4397f96d04
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Project.Tasks.Editor
|
||||
{
|
||||
internal sealed class TaskBoardOwnersConfig : ScriptableObject
|
||||
{
|
||||
public List<string> owners = new List<string> { "unassigned" };
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: acfa62607cc78b8499e371559154647f
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: da90adbe6fa0acb429453d3550e18961
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5203f967846df5f43baaa0a3ba2e2d5b
|
||||
Reference in New Issue
Block a user