├── .gitattributes ├── .gitignore ├── .vscode └── tasks.json ├── README.md ├── errors.inc ├── pawn.json ├── pawn_errors_version.inc └── test.pwn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/README.md -------------------------------------------------------------------------------- /errors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/errors.inc -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/pawn.json -------------------------------------------------------------------------------- /pawn_errors_version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/pawn_errors_version.inc -------------------------------------------------------------------------------- /test.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Southclaws/pawn-errors/HEAD/test.pwn --------------------------------------------------------------------------------