/**
* Copyright © Novelate 2020
* License: MIT (https://github.com/Novelate/NovelateEngine/blob/master/LICENSE)
* Author: Jacob Jensen (bausshf)
* Website: https://novelate.com/
* ------
* Novelate is a free and open-source visual novel engine and framework written in the D programming language.
* It can be used freely for both personal and commercial projects.
* ------
* Module Description:
* The root package of the Novelate engine.
*/
module novelate;

public
{
  import novelate.buildstate;

  import novelate.character;
  import novelate.core;

  import novelate.events;
  import novelate.external;

  import novelate.fonts;

  import novelate.media;
  import novelate.music;

  import novelate.queue;

  import novelate.screens;
  import novelate.scripting;
  import novelate.state;
  import novelate.submain;

  import novelate.ui;
}