mm_os
Version:
MM_OS服务端架构,用于快速构建应用程序,支持网站建设、小程序后台、AI应用、物联网(IOT/AIOT)、游戏服务端等多种场景。
16 lines • 556 B
JSON
{
// 游戏名称
"name": "${name || 'world'}",
// 游戏标题
"title": "${title || '游戏'}",
// 游戏描述
"description": "${description || '这是一个游戏'}",
// 游戏主脚本 - 可自定义游戏初始化,一般情况不需要定义
"main": "${main || 'index.js'}",
// 游戏状态 - 1 正常 0 禁用
"state": 1,
// 游戏排序 - 数字越小越靠前
"sort": 100,
// 游戏类型 - 角色扮演rpg、卡牌游戏card、策略游戏strategy、模拟经营simulation
"type": "${type || 'card'}"
}