const bool p_Customizable = true;

#include "melee/weapon_cofknife"
#include "special/weapon_coflantern"
#include "special/weapon_cofsyringe"
#include "pistols/weapon_cofanaconda"
#include "pistols/weapon_cofglock"
#include "rifles/weapon_cofl85"



void MapInit()
{
	CoFKNIFE::POSITION = 11;
	RegisterCoFKNIFE();
	CoFGLOCK::POSITION = 11;
	CoFANACONDA::POSITION = 18;
	RegisterCoFGLOCK();
	RegisterCoFANACONDA();
	CoFSYRINGE::POSITION = 10;
	CoFLANTERN::POSITION = 10;
	RegisterCoFSYRINGE();
	RegisterCoFLANTERN();
	CoFL85::POSITION = 13;
	RegisterCoFL85();
}