mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
9 lines
146 B
C++
9 lines
146 B
C++
|
#include "amxxmodule.h"
|
||
|
#include "mysql2_header.h"
|
||
|
|
||
|
void OnAmxxAttach()
|
||
|
{
|
||
|
MF_AddNatives(g_BaseSqlNatives);
|
||
|
MF_AddNatives(g_ThreadSqlNatives);
|
||
|
}
|