-
Notifications
You must be signed in to change notification settings - Fork 7
/
stephino-rpg.php
33 lines (28 loc) · 911 Bytes
/
stephino-rpg.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* The first-ever Multi-Player Online Role-Playing Game for WordPress!
*
* Plugin Name: Stephino RPG
* Description: Host a stunning browser-based multiplayer RPG (Role-Playing Game) for the first time ever on WordPress
* Author: Mark Jivko
* Author URI: https://stephino.com
* Version: 0.4.1
* Text Domain: stephino-rpg
* Domain Path: /languages
* License: GPL v3+
* License URI: https://gnu.org/licenses/gpl-3.0.txt
*
* @copyright (c) 2021, Stephino
* @author Mark Jivko <stephino.team@gmail.com>
* @package stephino-rpg
* @license GPL v3+, https://gnu.org/licenses/gpl-3.0.txt
*/
!defined('ABSPATH') && exit();
// Define the root
define('STEPHINO_RPG_ROOT', dirname(__FILE__));
// Prepare the autoloader
require_once STEPHINO_RPG_ROOT . '/lib/Stephino/Rpg/Autoloader.php';
Stephino_Rpg_Autoloader::get();
// Start the game!
Stephino_Rpg::get();
/*EOF*/