1
0
mirror of https://github.com/NekoX-Dev/NekoX.git synced 2024-12-14 17:39:35 +01:00
NekoX/TMessagesProj/jni/tgcalls/PlatformContext.h
2020-08-14 19:58:22 +03:00

16 lines
203 B
C++

#ifndef TGCALLS_PLATFORM_CONTEXT_H
#define TGCALLS_PLATFORM_CONTEXT_H
namespace tgcalls {
class PlatformContext {
public:
virtual ~PlatformContext() = default;
};
} // namespace tgcalls
#endif