#pragma once #ifdef CSQC // this stuff is defined in the server side engine VM, so we must define it separately here const int STATE_TOP = 0; const int STATE_BOTTOM = 1; const int STATE_UP = 2; const int STATE_DOWN = 3; #endif // breakable const int STATE_ALIVE = 0; const int STATE_BROKEN = 1;