0ad/binaries/data/mods/mod/tools/dap/plugin.js

12 lines
182 B
JavaScript
Raw Normal View History

import { logger } from 'tools/dap/logger.js';
export class Plugin
{
constructor(name, type)
{
this.name = name;
this.type = type;
this.logger = logger.getLogger(name);
}
}