ocarina/core/core.cpp
Anna Schumaker ead1397b31 Remove Doxygen tags
I wasn't actually using Doxygen for anything, so it's probably best just
to remove it.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2015-09-02 14:24:42 -04:00

20 lines
328 B
C++

/**
* Copyright 2014 (c) Anna Schumaker.
*/
#include <core/audio.h>
#include <core/core.h>
#include <core/deck.h>
#include <core/library.h>
#include <core/playlist.h>
#include <core/tags/tags.h>
void core :: init()
{
tags :: init();
library :: init();
playlist :: init();
deck :: init();
audio :: init();
}