CC_SDK/Server/Server.h

16 lines
283 B
C
Raw Normal View History

2025-04-25 19:37:53 +08:00
#ifndef SERVER_H
#define SERVER_H
#include "CCWebServlet.h"
class Server {
public:
inline static CTL::WebServlet Servlet;
//------------------------------------------------------------------------------
static void Init();
static int Running();
private:
};
#endif