This commit is contained in:
CortexCore
2024-03-18 18:20:23 +08:00
parent a87aa47882
commit 8acd61ea57
412 changed files with 1799371 additions and 31676 deletions

View File

@@ -0,0 +1,14 @@
// Magica Cloth 2.
// Copyright (c) 2023 MagicaSoft.
// https://magicasoft.jp
namespace MagicaCloth2
{
/// <summary>
/// 対象データの検証を行うインターフェース
/// </summary>
interface IDataValidate
{
void DataValidate();
}
}