mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
10 lines
277 B
C#
10 lines
277 B
C#
namespace EggLink.DanhengServer.GameServer.Game.Scene.Component;
|
|
|
|
public class RotatableRegionSceneComponent(SceneInstance scene) : BaseSceneComponent(scene)
|
|
{
|
|
public override async ValueTask Initialize()
|
|
{
|
|
// TODO
|
|
await ValueTask.CompletedTask;
|
|
}
|
|
} |