2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
2015-11-10 05:21:49 +00:00
|
|
|
* Project64 - A Nintendo 64 emulator. *
|
2012-12-19 09:30:18 +00:00
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2010-06-14 21:14:58 +00:00
|
|
|
#pragma once
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2015-01-30 21:01:21 +00:00
|
|
|
//Plugin controller
|
2015-12-04 06:49:31 +00:00
|
|
|
#include "Plugins/PluginClass.h"
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2015-01-30 21:01:21 +00:00
|
|
|
//Base Plugin class, all plugin derive from this, handles core functions
|
2015-12-04 06:49:31 +00:00
|
|
|
#include "Plugins/PluginBase.h"
|
2010-06-14 21:14:58 +00:00
|
|
|
|
2015-12-04 06:49:31 +00:00
|
|
|
#include "Plugins/GFXPlugin.h"
|
|
|
|
#include "Plugins/AudioPlugin.h"
|
|
|
|
#include "Plugins/ControllerPlugin.h"
|
|
|
|
#include "Plugins/RSPPlugin.h"
|