mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
20 lines
451 B
C++
20 lines
451 B
C++
/* Copyright 2003-2005 ROBLOX Corporation, All Rights Reserved */
|
|
#include "stdafx.h"
|
|
|
|
#include "Humanoid/StrafingNoPhysics.h"
|
|
#include "Humanoid/Humanoid.h"
|
|
|
|
namespace RBX {
|
|
namespace HUMAN {
|
|
|
|
const char* const sStrafingNoPhysics = "StrafingNoPhysics";
|
|
|
|
|
|
StrafingNoPhysics::StrafingNoPhysics(Humanoid* humanoid, StateType priorState)
|
|
:Named<MovingNoPhysicsBase, sStrafingNoPhysics>(humanoid, priorState)
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace HUMAN
|
|
} // namespace RBX
|