初次提交

This commit is contained in:
m0_75251201
2025-07-12 11:30:22 +08:00
commit 7700703099
1156 changed files with 21532 additions and 0 deletions

10
Script/Base/IThing.cs Normal file
View File

@ -0,0 +1,10 @@
using Godot;
using System;
namespace Cosmobox
{
public interface IThing
{
public void Update(double delta);
}
}