[Final] TaskBoard

This commit is contained in:
2026-03-30 10:25:01 +07:00
parent ef2c132c92
commit 5434a7e601
9 changed files with 1346 additions and 203 deletions
@@ -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" };
}
}