-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.inc linguist-language=PAWN | ||
*.pwn linguist-language=Pawn | ||
*.inc linguist-language=Pawn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# | ||
# Package only files | ||
# | ||
|
||
# Compiled Bytecode, precompiled output and assembly | ||
*.amx | ||
*.lst | ||
*.asm | ||
|
||
# Vendor directory for dependencies | ||
dependencies/ | ||
|
||
# Dependency versions lockfile | ||
pawn.lock | ||
|
||
|
||
# | ||
# Server/gamemode related files | ||
# | ||
|
||
# compiled settings file | ||
# keep `samp.json` file on version control | ||
# but make sure the `rcon_password` field is set externally | ||
# you can use the environment variable `SAMP_RCON_PASSWORD` to do this. | ||
server.cfg | ||
|
||
# Plugins directory | ||
plugins/ | ||
|
||
# binaries | ||
*.exe | ||
*.dll | ||
*.so | ||
announce | ||
samp03svr | ||
samp-npc | ||
|
||
# logs | ||
logs/ | ||
server_log.txt | ||
|
||
# | ||
# Common files | ||
# | ||
|
||
*.sublime-workspace | ||
*.sublime-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"entry": "test.pwn", | ||
"output": "test.amx", | ||
"dependencies": [ | ||
"sampctl/samp-stdlib" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// generated by "sampctl package generate" | ||
|
||
#include "mdialog.inc" | ||
|
||
main() { | ||
// write tests for libraries here and run "sampctl package run" | ||
} |