mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 20:25:30 +00:00
17 lines
358 B
C#
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");
|
|
}
|
|
}
|
|
}
|