Add some tools
This commit is contained in:
parent
b548492129
commit
c8fe18d1bc
1 changed files with 46 additions and 0 deletions
|
@ -332,3 +332,49 @@ export const RequireJS: Tool = {
|
||||||
depend_tools: [],
|
depend_tools: [],
|
||||||
developed_platforms: CSS.developed_platforms
|
developed_platforms: CSS.developed_platforms
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Other
|
||||||
|
|
||||||
|
export const SteamAPI: Tool = {
|
||||||
|
type: ToolType.LIB_OR_PACKAGE,
|
||||||
|
name: 'SteamAPI',
|
||||||
|
version: null,
|
||||||
|
icon: null,
|
||||||
|
description: null,
|
||||||
|
url: 'https://steamcommunity.com/dev',
|
||||||
|
depend_tools: [],
|
||||||
|
developed_platforms: Unity3D.developed_platforms
|
||||||
|
}
|
||||||
|
|
||||||
|
export const MIDI: Tool = {
|
||||||
|
type: ToolType.OTHER,
|
||||||
|
name: 'MIDI',
|
||||||
|
version: null,
|
||||||
|
icon: null,
|
||||||
|
description: null,
|
||||||
|
url: 'https://en.wikipedia.org/wiki/MIDI',
|
||||||
|
depend_tools: [],
|
||||||
|
developed_platforms: Unity3D.developed_platforms
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Cordova: Tool = {
|
||||||
|
type: ToolType.OTHER,
|
||||||
|
name: 'Cordova',
|
||||||
|
version: null,
|
||||||
|
icon: null,
|
||||||
|
description: null,
|
||||||
|
url: 'https://cordova.apache.org/',
|
||||||
|
depend_tools: [],
|
||||||
|
developed_platforms: [ToolPlatform.MOBILE]
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Electron: Tool = {
|
||||||
|
type: ToolType.OTHER,
|
||||||
|
name: 'Electron',
|
||||||
|
version: null,
|
||||||
|
icon: null,
|
||||||
|
description: null,
|
||||||
|
url: 'https://www.electronjs.org/',
|
||||||
|
depend_tools: [],
|
||||||
|
developed_platforms: [ToolPlatform.DESKTOP]
|
||||||
|
}
|
Loading…
Reference in a new issue