Initial commit.
* Beginning reconstruction of Source SDK. Signed-off-by: aixxe <me@aixxe.net>
This commit is contained in:
10
include/cstrike/Interfaces/IVModelInfo.h
Normal file
10
include/cstrike/Interfaces/IVModelInfo.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
class model_t;
|
||||
|
||||
class IVModelInfoClient {
|
||||
public:
|
||||
const char* GetModelName(const model_t* model) {
|
||||
return GetVirtualFunction<const char*(*)(IVModelInfoClient*, const model_t*)>(this, 4)(this, model);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user