Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit 4b2bc60

Browse files
author
Yehonal
committed
+ added gitignore
+ added path define
1 parent 261fcc3 commit 4b2bc60

2 files changed

Lines changed: 81 additions & 0 deletions

File tree

.gitignore

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
#AZTH
2+
3+
# exclude everything ...
4+
/config/playermap_config.php
5+
6+
#
7+
# OS specific
8+
#
9+
# MacOS
10+
.DS_Store
11+
12+
# Windows
13+
Thumbs.db
14+
Thumbs.db:encryptable
15+
16+
17+
#
18+
# Editors / debuggers / other output files
19+
#
20+
*~
21+
*.bak
22+
*.orig
23+
*.patch
24+
*.diff
25+
callgrind.out.*
26+
27+
#
28+
# Git stuff
29+
#
30+
# stgit directories
31+
patches-*
32+
.git/
33+
*.rej
34+
35+
36+
#
37+
# IDE & other softwares
38+
#
39+
/.settings/
40+
/.externalToolBuilders/*
41+
# exclude in all levels
42+
nbproject/private/
43+
.sync.ffs_db
44+
45+
#
46+
# Eclipse
47+
#
48+
*.pydevproject
49+
.metadata
50+
.gradle
51+
tmp/
52+
*.tmp
53+
*.swp
54+
*~.nib
55+
local.properties
56+
.settings/
57+
.loadpath
58+
59+
# External tool builders
60+
.externalToolBuilders/
61+
/node_modules
62+
/npm-debug.*
63+
64+
# Locally stored "Eclipse launch configurations"
65+
*.launch
66+
67+
# CDT-specific
68+
.cproject
69+
70+
# PDT-specific
71+
.buildpath
72+
73+
# TeXlipse plugin
74+
.texlipse
75+
76+
77+

index.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<?php
2+
3+
4+
define("AZTH_PATH_TC_PLAYERMAP", dirname(__FILE__));
5+
26
require_once("pomm_conf.php");
37
require_once("func.php");
48
require_once("map_english.php");

0 commit comments

Comments
 (0)