Move scripting source files into new filder. Obviously, these won't work yet or even compile.

This commit is contained in:
hispidence 2021-12-14 21:10:21 +00:00
parent a9d8b78c96
commit 69de6e4502
24 changed files with 3 additions and 3 deletions

View file

@ -1,21 +0,0 @@
#include "framework.h"
#include "GameScriptAnimations.h"
/***
New custom animations which Lara can perform.
@pregameclass Animations
@pragma nostrip
*/
void GameScriptAnimations::Register(sol::state* lua)
{
lua->new_usertype<GameScriptAnimations>("Animations",
"crawlExtended", &GameScriptAnimations::CrawlExtended,
"crouchRoll", &GameScriptAnimations::CrouchRoll,
"crawlspaceSwandive", &GameScriptAnimations::CrawlspaceSwandive,
"monkeyTurn180", &GameScriptAnimations::MonkeyTurn180,
"monkeyAutoJump", &GameScriptAnimations::MonkeyAutoJump,
"oscillateHang", &GameScriptAnimations::OscillateHang,
"pose", &GameScriptAnimations::Pose
);
}