Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 440 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 440 Bytes

Dojo

Dojo Engine. Scuffed rectangle and sprite rendering engine for Windows written in C++.

Current Roadmap

  • Sprite rendering implementation (Done)
  • Shared textures
  • Entity class (Done)

Logging

Log macros defined:

  • Core/Client
    • Trace
    • Info
    • Warn
    • Error
    • Critical

Usage example: DOJO_CORE_ERROR("Error message {0}", variable);

For client omit CORE_: DOJO_ERROR("Error message {0}", variable);