📄 serverscene.h
字号:
#ifndef SERVERSCENE_H
#define SERVERSCENE_H
#include <iostream>
#include "scene.h"
using namespace std;
class ServerScene : public Scene
{
public:
ServerScene();
~ServerScene();
public:
int init();
void breathe();
void shutdown();
static int* getTypePtr(void)
{
return &_type;
}
int getType(void) const
{
return _type;
}
protected:
static int _type;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -