- Added helper functions to facilitate Vector3 and Transform operations. - Defined operator overloads for Vector3 (not tested). - Added fly and spawnPrefab functions to the Misc namespace (not tested). - Added fly speed to settings.
21 lines
468 B
C++
21 lines
468 B
C++
#pragma once
|
|
|
|
#include "settings/settings.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace Misc {
|
|
void ForceStart();
|
|
void CarryItem(const char* itemName);
|
|
void CarryAnimal(const char* animalName);
|
|
void InstantWin();
|
|
void Fly(float speed);
|
|
void CustomizedLobby();
|
|
void SpawnPrefab(app::PrefabId id);
|
|
void FullBright();
|
|
void Revive(bool self);
|
|
void GetKeys();
|
|
void Jumpscare();
|
|
void Kill(bool self);
|
|
void RankSpoofer(int value);
|
|
} |