使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
lolengine
/
lol
镜像自地址
https://github.com/lolengine/lol
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
0
百科
动态
浏览代码
base: prevent instantiation of several static-only classes.
legacy
Sam Hocevar
sam
11 年前
父节点
876b4ec8e5
当前提交
b9d6454c30
共有
6 个文件被更改
,包括
18 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+3
-0
src/audio.h
+3
-0
src/forge.h
+3
-0
src/platform.h
+3
-0
src/profiler.h
+3
-0
src/ticker.h
+3
-0
src/tiler.h
+ 3
- 0
src/audio.h
查看文件
@@ -26,6 +26,9 @@ class Audio
{
public:
static void Setup(int channels);
private:
Audio() {}
};
} /* namespace lol */
+ 3
- 0
src/forge.h
查看文件
@@ -28,6 +28,9 @@ public:
static int Register(char const *path);
static void Deregister(int id);
static Font *GetFont(int id);
private:
Forge() {}
};
} /* namespace lol */
+ 3
- 0
src/platform.h
查看文件
@@ -26,6 +26,9 @@ class Platform
{
public:
static int GetMouseCount();
private:
Platform() {}
};
} /* namespace lol */
+ 3
- 0
src/profiler.h
查看文件
@@ -48,6 +48,9 @@ public:
static void Stop(int id);
static float GetAvg(int id);
static float GetMax(int id);
private:
Profiler() {}
};
} /* namespace lol */
+ 3
- 0
src/ticker.h
查看文件
@@ -45,6 +45,9 @@ public:
static void Shutdown();
static int Finished();
private:
Ticker() {}
};
} /* namespace lol */
+ 3
- 0
src/tiler.h
查看文件
@@ -29,6 +29,9 @@ class Tiler
public:
static TileSet *Register(char const *path, ivec2 size, ivec2 count);
static void Deregister(TileSet *);
private:
Tiler() {}
};
} /* namespace lol */
撰写
预览
正在加载...
取消
保存