ursamu-mud
Version:
Ursamu - Modular MUD Engine with sandboxed scripting and plugin system
34 lines • 978 B
JavaScript
/**
* Ursamu - Modular MUD Engine
*
* Main entry point for the Ursamu MUD engine framework.
* This package provides the core architecture and tools for building
* modern Multi-User Dungeon games with modular plugins and hot-reload.
*/
export const version = '1.0.0';
/**
* Main MUD Engine class
* This is a placeholder implementation for the initial release.
* The full implementation will be available in future versions.
*/
export class MUDEngine {
config;
constructor(config = {}) {
this.config = config;
}
async start() {
console.log('Ursamu MUD Engine v1.0.0');
console.log('Starting engine...');
// Placeholder implementation
console.log('Engine started successfully!');
}
async stop() {
console.log('Stopping engine...');
}
getVersion() {
return version;
}
}
// Re-export version info
export { version as VERSION } from './version.js';
//# sourceMappingURL=index.js.map