#include #include #include #pragma semicolon 1 //---------------------------------------------------------------------------------------------------------------------- public Plugin:myinfo = { name = "Videogames -> Tetris", author = "mukunda", description = "Tetris!!", version = "1.0.0", url = "www.mukunda.com" }; public OnAllPluginsLoaded() { VG_Register( "tetris", "Tetris" ); } public OnPluginStart() { } public OnMapStart() { PrecacheModel( "models/videogames/tetris/cartridge.mdl" ); // this should really be handled by videogames.sp :( } public VG_OnEntry() { } public VG_OnFrame() { }