MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / SendResourceRemovedHint

Method SendResourceRemovedHint

LuaSTGPlus/RemoteDebuggerClient.cpp:79–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79void RemoteDebuggerClient::SendResourceRemovedHint(ResourceType Type, ResourcePoolType PoolType, const char* Name)
80{
81 shared_ptr<Value> tMessage = make_shared<Value>(ValueType::Dictionary);
82 tMessage->VDict["type"] = make_shared<Value>(static_cast<int>(Type));
83 tMessage->VDict["pool"] = make_shared<Value>(static_cast<int>(PoolType));
84 tMessage->VDict["name"] = make_shared<Value>(Name);
85
86 sendUdpMessage(UdpMessageType::ResourceRemoved, tMessage);
87}
88
89void RemoteDebuggerClient::SendResourceClearedHint(ResourcePoolType PoolType)
90{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected