31 lines
1.0 KiB
SourcePawn
31 lines
1.0 KiB
SourcePawn
|
//====================================================================================================
|
||
|
//
|
||
|
// Name: [entWatch] Beacons
|
||
|
// Author: zaCade & Prometheum
|
||
|
// Description: Handle the beacons of [entWatch]
|
||
|
//
|
||
|
//====================================================================================================
|
||
|
#include <smlib>
|
||
|
|
||
|
#pragma newdecls required
|
||
|
|
||
|
#include <sourcemod>
|
||
|
#include <entWatch_core>
|
||
|
|
||
|
//----------------------------------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//----------------------------------------------------------------------------------------------------
|
||
|
public Plugin myinfo =
|
||
|
{
|
||
|
name = "[entWatch] Beacons",
|
||
|
author = "zaCade & Prometheum",
|
||
|
description = "Handle the beacons of [entWatch]",
|
||
|
version = "4.0.0"
|
||
|
};
|
||
|
|
||
|
//----------------------------------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//----------------------------------------------------------------------------------------------------
|
||
|
public void OnPluginStart()
|
||
|
{
|
||
|
}
|