Files
PCK-Studio/PckStudio.Core/GameRule/UpdatePlayer.cs
2025-11-19 21:47:39 +01:00

17 lines
358 B
C#

using System;
using System.Numerics;
namespace PckStudio.Core.GameRule
{
public sealed class UpdatePlayer : AbstractGameRule
{
public override string Name => "UpdatePlayer";
public UpdatePlayer(Vector3 spawn, Vector2 rot)
{
AddParameter(spawn);
AddParameter(rot, suffix: "Rot");
}
}
}