Initial Commit

This commit is contained in:
Creeper Lv
2025-12-14 00:25:51 +11:00
commit 40c8998552
61 changed files with 1936 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Progrart.Core.ProjectSystem
{
[Serializable]
public class Project
{
}
[Serializable]
public class BuildConfiguration
{
public string? Name;
}
}