mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2024-11-30 12:36:03 +00:00
13 lines
338 B
PHP
13 lines
338 B
PHP
<?php
|
|
session_start();
|
|
|
|
include "./_pdo.php";
|
|
|
|
define('FILTER_PROPERTIES_FILE', 'filterProperties.txt');
|
|
define('DB_FILE', $_SESSION['modname'].".db");
|
|
define('TXT_PATH', $_SESSION['path']);
|
|
|
|
require_once "./src/D2Functions.php";
|
|
require_once "./src/D2Database.php";
|
|
require_once './src/D2Files.php';
|
|
require_once './src/D2TxtParser.php'; |