Initial commit.
* Beginning reconstruction of Source SDK. Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
12
include/cstrike/Interfaces/ICvar.h
Normal file
12
include/cstrike/Interfaces/ICvar.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
class ICvar {
|
||||
public:
|
||||
template <typename... Values> void ConsoleColorPrintf(const Color& MsgColor, const char* Format, Values... Parameters) {
|
||||
return GetVirtualFunction<void(*)(ICvar*, const Color&, const char*, ...)>(this, 23)(this, MsgColor, Format, Parameters...);
|
||||
}
|
||||
|
||||
template <typename... Values> void ConsoleDPrintf(const char* Format, Values... Parameters) {
|
||||
return GetVirtualFunction<void(*)(ICvar*, const char*, ...)>(this, 24)(this, Format, Parameters...);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user