Server side blip and Vector2 argument

This commit is contained in:
Sardelka
2022-07-03 15:28:28 +08:00
parent fa96f4c073
commit 08e17b1714
11 changed files with 270 additions and 33 deletions

View File

@ -123,6 +123,14 @@ namespace RageCoop.Core
Z = ReadFloat()
};
}
public Vector2 ReadVector2()
{
return new Vector2()
{
X = ReadFloat(),
Y = ReadFloat()
};
}
public Quaternion ReadQuaternion()
{
return new Quaternion()