Add some tools

This commit is contained in:
Florian RICHER 2023-04-02 19:34:47 +02:00
parent b548492129
commit c8fe18d1bc

View file

@ -331,4 +331,50 @@ export const RequireJS: Tool = {
url: 'https://requirejs.org/',
depend_tools: [],
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]
}