-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathIMValueWriter.cs
53 lines (32 loc) · 929 Bytes
/
IMValueWriter.cs
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System.Collections;
using System.Numerics;
using AltV.Net.Data;
using AltV.Net.Elements.Entities;
using AltV.Net.Shared.Elements.Entities;
namespace AltV.Net
{
public interface IMValueWriter
{
void BeginObject();
void EndObject();
void BeginArray();
void EndArray();
void Name(string name);
void Value(bool value);
void Value(int value);
void Value(long value);
void Value(uint value);
void Value(ulong value);
void Value(float value);
void Value(double value);
void Value(string value);
void Value(ISharedBaseObject value);
void Value(ICollection value);
void Value(IWritable value);
void Value(Position value);
void Value(Rotation value);
void Value(Rgba value);
void Value(Vector3 value);
void Value(Vector2 value);
}
}