iw4x-client/iw4/Components/RawFiles.hpp
2015-12-23 14:45:53 +01:00

15 lines
327 B
C++

#define Q_IsColorString( p ) ( ( p ) && *( p ) == '^' && *( ( p ) + 1 ) && isdigit( *( ( p ) + 1 ) ) ) // ^[0-9]
namespace Components
{
class RawFiles : public Component
{
public:
RawFiles();
const char* GetName() { return "RawFiles"; };
static void* RawFiles::LoadModdableRawfileFunc(const char* filename);
};
}