diff options
author | Maya <malte.hoermeyer@web.de> | 2022-07-09 00:17:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 00:17:05 +0200 |
commit | 9f8190486e04c66483dc8cd0ca9fd92fc732789a (patch) | |
tree | cd65b6d8a74e02ce35cce30e9be706428ac246a6 /NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj | |
parent | 5995a7462da970ee2102a0dd0047ebbcef519dd0 (diff) | |
download | NorthstarLauncher-9f8190486e04c66483dc8cd0ca9fd92fc732789a.tar.gz NorthstarLauncher-9f8190486e04c66483dc8cd0ca9fd92fc732789a.zip |
Add StringToAsset function to squirrel (#216)
* Add StringToAsset function to squirrel
also added better values for return type enum because otherwise asset can't be returned without casting
* Formatting
* Switched to a template for the stringToAsset function
also renamed files but have to do it in 2 commits because git ignores file case
* Rename step 2
* change to lowercase in include
* changed to lowercase in include inside dllmain
Diffstat (limited to 'NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj')
-rw-r--r-- | NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj b/NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj index ea9ccbb3..ff6ca2ea 100644 --- a/NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj +++ b/NorthstarDedicatedTest/NorthstarDedicatedTest.vcxproj @@ -121,6 +121,7 @@ <ClInclude Include="ns_version.h" /> <ClInclude Include="plugins.h" /> <ClInclude Include="plugin_abi.h" /> + <ClInclude Include="scriptutility.h" /> <ClInclude Include="serverchathooks.h" /> <ClInclude Include="clientauthhooks.h" /> <ClInclude Include="color.h" /> @@ -616,6 +617,7 @@ <ClCompile Include="scriptmodmenu.cpp" /> <ClCompile Include="scriptserverbrowser.cpp" /> <ClCompile Include="scriptsrson.cpp" /> + <ClCompile Include="scriptutility.cpp" /> <ClCompile Include="serverauthentication.cpp" /> <ClCompile Include="miscserverscript.cpp" /> <ClCompile Include="serverchathooks.cpp" /> |