UNPKG

seed-engine

Version:

A Lightweight 2D game engine using WebGL2. The engine is designed on the focus of creating a bridge between creating and publishing games to the Seed Network as modules.

11 lines (9 loc) 225 B
export const error = (data) => { console.info('%c' + data, 'color: red;'); } export const success = (data) => { console.info('%c' + data, 'color: green;'); } export const info = (data) => { console.info(data); }