patchwork-mapconverter
Version:
Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator
24 lines (21 loc) • 578 B
text/typescript
enum ContentType {
HEADER = 'HEADER',
LIBRARY = 'LIBRARY',
CATEGORY = 'CATEGORY',
TRIGGER = 'TRIGGER',
TRIGGER_SCRIPTED = 'TRIGGER_SCRIPTED',
COMMENT = 'COMMENT',
CUSTOM_SCRIPT = 'CUSTOM_SCRIPT',
VARIABLE = 'VARIABLE'
}
interface TriggerContent {
name: string
contentType: ContentType
// description: string
// isComment: boolean // probably ignorable?
// isEnabled: boolean
// isCustomScript: boolean // probably ignorable?
// initiallyOff: boolean
// runOnMapInit: boolean
}
export { ContentType, type TriggerContent }