smolworld / src /js /main.js
p3nGu1nZz's picture
✨ Add core game engine components including Scene, Layer, Time management, and input handling; implement configuration management
7b453e7
raw
history blame contribute delete
161 Bytes
import { run } from './engine.js';
(function () {
const config = {
initialAngularSpeed: 1.0,
};
// Start the engine
run(config);
})();