mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2024-12-14 17:39:35 +01:00
16 lines
203 B
C++
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
|