mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 20:33:09 +02:00
fix entity data packet type value
This commit is contained in:
parent
7578a70c4c
commit
bca8d8181d
1 changed files with 7 additions and 7 deletions
|
@ -27,7 +27,7 @@
|
||||||
// NOTE: if you want the name of the packet packetType to be available for debugging or logging, update nameForPacketType() as well
|
// NOTE: if you want the name of the packet packetType to be available for debugging or logging, update nameForPacketType() as well
|
||||||
|
|
||||||
namespace PacketType {
|
namespace PacketType {
|
||||||
enum Value {
|
enum Value {
|
||||||
Unknown,
|
Unknown,
|
||||||
StunResponse,
|
StunResponse,
|
||||||
DomainList,
|
DomainList,
|
||||||
|
@ -62,18 +62,18 @@ namespace PacketType {
|
||||||
DomainConnectRequest,
|
DomainConnectRequest,
|
||||||
DomainServerRequireDTLS,
|
DomainServerRequireDTLS,
|
||||||
NodeJsonStats,
|
NodeJsonStats,
|
||||||
EntityQuery,
|
|
||||||
EntityData,
|
|
||||||
EntityAdd,
|
|
||||||
EntityErase,
|
|
||||||
EntityEdit,
|
|
||||||
OctreeDataNack,
|
OctreeDataNack,
|
||||||
StopNode,
|
StopNode,
|
||||||
AudioEnvironment,
|
AudioEnvironment,
|
||||||
EntityEditNack,
|
EntityEditNack,
|
||||||
ICEServerHeartbeat,
|
ICEServerHeartbeat,
|
||||||
ICEPing,
|
ICEPing,
|
||||||
ICEPingReply
|
ICEPingReply,
|
||||||
|
EntityData,
|
||||||
|
EntityQuery,
|
||||||
|
EntityAdd,
|
||||||
|
EntityErase,
|
||||||
|
EntityEdit
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue