Files
DevourClient/user/features/misc/misc.h
Jadis0x d32b92d1e3 helper functions added
- 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.
2024-05-19 02:43:52 +03:00

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);
}