Initial commit

This commit is contained in:
EntenKoeniq
2021-07-07 13:36:25 +02:00
commit c332b89bf7
39 changed files with 3743 additions and 0 deletions

View File

@ -0,0 +1,12 @@
namespace CoopServer.Entities
{
struct EntitiesPed
{
public LVector3 Position { get; set; }
public bool IsInRangeOf(LVector3 position, float distance)
{
return LVector3.Subtract(Position, position).Length() < distance;
}
}
}