forked from FabianTerhorst/coreclr-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPriorityEntity.cs
More file actions
25 lines (21 loc) · 800 Bytes
/
PriorityEntity.cs
File metadata and controls
25 lines (21 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections.Generic;
using System.Numerics;
namespace AltV.Net.EntitySync
{
public class PriorityEntity : Entity, IPriorityEntity
{
public bool IsHighPriority { get; set; }
public PriorityEntity(ulong type, Vector3 position, int dimension, uint range) : base(type, position, dimension,
range)
{
}
public PriorityEntity(ulong type, Vector3 position, int dimension, uint range, IDictionary<string, object> data)
: base(type, position, dimension, range, data)
{
}
internal PriorityEntity(ulong id, ulong type, Vector3 position, int dimension, uint range,
IDictionary<string, object> data) : base(id, type, position, dimension, range, data)
{
}
}
}