초기커밋
This commit is contained in:
25
ServerBase/Helper/EntityHelper.cs
Normal file
25
ServerBase/Helper/EntityHelper.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user