26 lines
430 B
C#
26 lines
430 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace ServerBase;
|
|
|
|
|
|
public static class EntityHelper
|
|
{
|
|
public static Pos makePos( float x, float y, float z
|
|
, int angle )
|
|
{
|
|
var pos = new Pos();
|
|
pos.X = x;
|
|
pos.Y = y;
|
|
pos.Z = z;
|
|
pos.Angle = angle;
|
|
|
|
return pos;
|
|
}
|
|
}
|