mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 17:45:09 +00:00
15 lines
324 B
C#
15 lines
324 B
C#
using System;
|
|
using System.Numerics;
|
|
namespace PckStudio.Core.GameRule
|
|
{
|
|
internal sealed class WorldPosition : AbstractGameRule
|
|
{
|
|
public override string Name => "WorldPosition";
|
|
|
|
public WorldPosition(int x, int y, int z)
|
|
{
|
|
AddParameter(new Vector3(x, y, z));
|
|
}
|
|
}
|
|
}
|