初次提交

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

View File

@ -0,0 +1,9 @@
using Godot;
using System;
namespace Cosmobox
{
public interface IThingPhysics
{
public void PhysicsUpdate(double delta);
}
}