- add in a common code stub

This commit is contained in:
Rachael Alexanderson 2024-04-20 00:13:39 -04:00
parent 30e9cb7e75
commit 3fe0c2e698
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0
2 changed files with 9 additions and 0 deletions

View file

@ -620,6 +620,7 @@ file( GLOB HEADER_FILES
core/textures/*.h core/textures/*.h
core/models/*.h core/models/*.h
core/textures/formats/*.h core/textures/formats/*.h
core/vmstubs.cpp
) )

8
source/core/vmstubs.cpp Normal file
View file

@ -0,0 +1,8 @@
#include "common/engine/palettecontainer.h"
#include "name.h"
#include "dobject.h"
bool ShouldAllowGameSpecificVirtual(FName name, unsigned index, PType* arg, PType* varg)
{
return false;
}