Giter Site home page Giter Site logo

danielkrupinski / osiris Goto Github PK

View Code? Open in Web Editor NEW
3.2K 161.0 962.0 122.89 MB

Free and open-source game hack for Counter-Strike 2, written in modern C++. For Windows and Linux.

License: MIT License

C++ 95.76% CMake 0.84% JavaScript 2.28% Assembly 1.12%
internal dll dll-injection cpp windows counter-strike osiris game-hacking reverse-engineering source-engine

osiris's Introduction

Osiris

Windows Linux

Free and open-source game hack for Counter-Strike 2. Compatible with the latest Steam version of the game. Cross-platform - available for Windows and Linux systems.

What's new

  • 1 May 2024 - Added player position arrow color based on player color

Player position arrow with player color

  • 22 April 2024 - Added an option to draw player information only on enemies
  • 17 April 2024 - Added player health text color based on health value

Health-based color

  • 9 April 2024 - Added an option to show players' active weapon to Visuals
  • 2 April 2024 - Added an option to show players' health to Visuals

Technical features

  • C++ runtime library (CRT) is not used in release builds
  • No heap memory allocations
  • No static imports in release build on Windows
  • No threads are created
  • Exceptions are not used
  • No external dependencies

Compiling

Prerequisites

Windows

  • Microsoft Visual Studio 2022 with Desktop development with C++ workload

Linux

  • CMake 3.24 or newer
  • g++ 11 or newer or clang++ 15 or newer

Compiling from source

Windows

Open Osiris.sln in Visual Studio 2022, set build configuration to Release | x64. Press Build solution and you should receive Osiris.dll file.

Linux

Configure with CMake:

cmake -DCMAKE_BUILD_TYPE=Release -B build

Build:

cmake --build build -j $(nproc --all)

After following these steps you should receive libOsiris.so file in build/Source/ directory.

Loading / Injecting into game process

Windows

You need a DLL injector to inject (load) Osiris.dll into game process.

Counter-Strike 2 blocks LoadLibrary injection method, so you have to use a manual mapping (aka reflective DLL injection) injector.

Xenos and Extreme Injector are known to be detected by VAC.

Linux

You can simply run the following script in the directory containing libOsiris.so:

sudo gdb -batch-silent -p $(pidof cs2) -ex "call (void*)dlopen(\"$PWD/libOsiris.so\", 2)"

However, this injection method might be detected by VAC as gdb is visible under TracerPid in /proc/$(pidof cs2)/status for the duration of the injection.

License

Copyright (c) 2018-2024 Daniel Krupiński

This project is licensed under the MIT License - see the LICENSE file for details.

osiris's People

Contributors

3ld4d avatar agshaidun avatar blackmasterlord avatar bruhmoment21 avatar claudiuhks avatar daisuki333 avatar danielkrupinski avatar deboogerxyz avatar fizz3 avatar hayden959 avatar heyter avatar khajiitos avatar m3351an avatar mdilai avatar molendus1001 avatar mr-nv avatar nep-timeline avatar nereuxofficial avatar noteffex avatar oly-uk avatar ozymogit avatar playday3008 avatar rmccrystal avatar sambrashaw avatar skysmind avatar speedplane2248 avatar sunzbody avatar wirekuro avatar zergo0 avatar zfumo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

osiris's Issues

Thirdperson key issue (and how to fix)

The way you did the third person key is... well it's buggy as shit.

Your code:

static bool isInThirdperson{ true };

if (GetAsyncKeyState(config.visuals.thirdpersonKey))
    isInThirdperson = !isInThirdperson;

My code (doesn't spam the key like crazy when trying to press it):

static bool active = false;
static size_t lastTime = 0;

if (g_Vars.Effects.Other.forceThirdPerson) {

        if (GetAsyncKeyState(g_Vars.Effects.Other.thirdPersonKey)) {

		if (GetTickCount() > lastTime) {

			active = !active;
			lastTime = GetTickCount() + 650;
		}
	}
}
``` #

Crash cheat

Hi Daniel, after the launch of the second card in MM, the osiris began to crash, by debugging I found out that it crashes setMaterialVarFlag
image

Are you planning to add an aim assist?

First, you have a great project and I am using it for days without an vac ban :)!

I do not see code for an aim assist in osiris (but an aimbot which hopefully comes soon(?)), and would like to know if you are planning to add an aim assist with custom settings for humanization?
Even if not I will keep using your project and I am learning c++ atm so I can modify the cheat for myself too 👍

ETA?

Is there an eta for when u will add a aimbot.

About Installing & Usage

Hi,
I'm asking from here one more time in case someone needs it.
After compiling .dll file how to inject it / into which executable to inject it?
Any key combinations to use the .dll?

Thanks

Weird errors

Hello, i was wondering if anyone could help me with two errors that i cant seem to fix.

C2039	'str': is not a member of 'std::basic_ostream<char,std::char_traits<char>>' (compiling source file Interfaces.cpp)	Osiris	\osiris-master\osiris\interfaces.h	38

and

C2228 left of '.c_str' must have class/struct/union (compiling source file Interfaces.cpp) Osiris \osiris-master\osiris\interfaces.h 38

Smoothing is not working.

The aimbot's smoothing is not working. It's just instantly snapping to the target.
Didn't modify anything, just fresh compile.

Aimbot crashing.

When I pressing the mouse1 button with enabled aimbot, my game crashing, please, help me.

not injecting

Been using osiris for a week now. One of the best free cheat out rn. I was using the previous version of osiris and saw that it was updated so i recompiled it and injected but my game crashed. It continued crashing for a few times as I was injecting but after fifth try it injected, but now as i pressed insert nothing showed up. Saw an old issue with same problem and verified the game files ,downloaded again and compiled but same issue.

Menu doesnt open

The menu opens perfectly on my pc but it doesnt open on the pc of my friend I have no idea why though.

Nothing building

I haver never used Visual Studio before and for some reason nothing is building when I click build. I also cannot find the button for build solution, only build. What am I doing wrong?

Improve aimbot? No recoil control or vis. checks.

The aimbot usually misses a lot of shots because it doesn't control the spray pattern. A recoil control option should be added for the aimbot, with a X and Y slider for how much you want the aimbot to compensate (so it doesn't just 100% compensate for it) and also make it work with the weapon_recoil_scale command.
Also, the aimbot needs a visibility check asap, or something like that, since it makes it obvious that you're hacking when your aim snaps to a guy through the wall when you shoot. Also, the aimbot should have a "Closest hitbox" option. I know this probably will take a long time to implement, and I'd help but I'm too stupid, so I'm just leaving it here as an "issue".

using findParttern instead of using offsets.

Thanks for your excellent codes.
I have one question here,are you using pattern search instead of offsets? I didnot see any offsets in your code.

I am not understand this tech,can you explain a little bit?
present = findPattern("gameoverlayrenderer.dll", "\xFF\x15.{4}\x8B\xF8\x85\xDB") + 2;
reset = findPattern("gameoverlayrenderer.dll", "\xC7\x45.{5}\xFF\x15.{4}\x8B\xF8") + 9;
localPlayer = reinterpret_cast<Entity**>(findPattern("client_panorama.dll", "\x8B\x0D.{4}\x83\xFF\xFF\x74\x07") + 2);
clientMode = reinterpret_cast<ClientMode*>((reinterpret_caststd::uintptr_t**(interfaces.client))[10] + 5);
input = reinterpret_cast<Input
>(findPattern("client_panorama.dll", "\xB9.{4}\x8B\x40\x38\xFF\xD0\x84\xC0\x0F\x85") + 1);
glowObjectManager = reinterpret_cast<GlowObjectManager*>(findPattern("client_panorama.dll", "\x0F\x11\x05.{4}\x83\xC8\x01") + 3);
disablePostProcessing = reinterpret_cast<bool*>(findPattern("client_panorama.dll", "\x80\x3D.{5}\x53\x56\x57\x0F\x85") + 2);
loadSky = findPattern("engine.dll", "\x55\x8B\xEC\x81\xEC.{4}\x56\x57\x8B\xF9\xC7\x45");
setClanTag = findPattern("engine.dll", "\x53\x56\x57\x8B\xDA\x8B\xF9\xFF\x15");
smokeCount = reinterpret_cast<int*>(findPattern("client_panorama.dll", "\x8B\x1D.{4}\x56\x33\xF6\x57\x85\xDB") + 2);

CSGO crashes after inject

The cheat worked fine yesterday.
CSGO crashes without any error message.
I have updated the cheat to the latest version (recompiling with the latest src) and it still happens

Key for triggerbot

Hello,
Could you tell me how to change the triggerbot key (alt) in the code?
I would appreciate that,
Thanks.

aimbot

Will u add an aimbot ?

getting vac banned within first competitive match

Hi Daniel,

First, really like the project. Super clean and it works great!

Second, I'm getting banned really quickly when using this in a competitive mode. I'm pretty new to using this sort of a project and am reading up on how how VAC works but don't really know what to do. Is there anything I can do to make this more unique and not as easily detected? Does it have anything to do with my DLL injector?

Side note, I'm not a very high rank and not being blatant with the cheats.

Thanks!

Discord: hobbyte#7474

Injector?

Can you please recommend an injector.
I only have experience with external cheats.

Adding more cham materials...

So I have done a few things to the source (actually quite a bit of changes...) and I am now stuck on adding new chams textures. I am attempting to use Comboboxes to switch between the materials... I am using Multicombo dropdowns to select visible and invisible chams (g_Vars.Chams.Enemy[0] / g_Vars.Chams.Enemy[1] ([0] being visible, [1] being invisible)). I am getting modulation on the players, though it's only black and flat... I have tried multiple different ways of getting around this and all have failed.

https://imgur.com/oOArEQi

Here is my code:

> std::ofstream("csgo\\materials\\regular_reflective.vmt") << R"#(VertexLitGeneric" {
> 
> 		"$basetexture" "vgui/white_additive"
> 		"$envmap" "env_cubemap"
> 		"$$normalmapalphaenvmapmask" "1"
> 		"$model" "1"
> 		"$flat" "1"
> 		"$nocull" "0"
> 		"$selfillum" "1"
> 		"$halflambert" "1"
> 		"$nofog" "1"
> 		"$znearer" "0"
> 	})#";
> 
> 	pearlescent = g_Interfaces.materialSystem->FindMaterial("regular_reflective");
> 	pearlescent->IncrementReferenceCount();
> void Chams::RenderPlayers(void* ctx, void* state, const ModelRenderInfo& info, matrix3x4* customBoneToWorld) noexcept {
> 
> 	auto entity = g_Interfaces.entlist->GetClientEntity(info.entityIndex);
> 
> 	if (entity && !entity->IsDormant() && entity->IsAlive()) {
> 
> 		Material* material = nullptr;
> 
> 		if (entity->IsEnemy()) {
> 
> 			if (g_Vars.Chams.Material == 0) {
> 
> 				material = _default;
> 
> 				if (g_Vars.Chams.Enemy[1]) {
> 
> 					material->ColorModulate(g_Vars.Color.Chams.EnemyHidden);
> 					material->SetMaterialVarFlag(MaterialVar::IGNOREZ, true);
> 					g_Interfaces.modelRender->forceMaterialOverride(material);
> 
> 					g_Hooks.modelRender.getOriginal<void(__thiscall*)(ModelRender*, void*, void*, const ModelRenderInfo&, matrix3x4*)>(21)(g_Interfaces.modelRender, ctx, state, info, customBoneToWorld);
> 
> 					if (!g_Vars.Chams.Enemy[0])
> 						g_Interfaces.modelRender->forceMaterialOverride(nullptr);
> 				}
> 
> 				if (g_Vars.Chams.Enemy[0]) {
> 
> 					material->ColorModulate(g_Vars.Color.Chams.Enemy);
> 					material->SetMaterialVarFlag(MaterialVar::IGNOREZ, false);
> 					g_Interfaces.modelRender->forceMaterialOverride(material);
> 				}
> 			}
> 			else if (g_Vars.Chams.Material == 1) {
> 
> 				material = flat;
> 
> 				if (g_Vars.Chams.Enemy[1]) {
> 
> 					material->ColorModulate(g_Vars.Color.Chams.EnemyHidden);
> 					material->SetMaterialVarFlag(MaterialVar::IGNOREZ, true);
> 					g_Interfaces.modelRender->forceMaterialOverride(material);
> 
> 					g_Hooks.modelRender.getOriginal<void(__thiscall*)(ModelRender*, void*, void*, const ModelRenderInfo&, matrix3x4*)>(21)(g_Interfaces.modelRender, ctx, state, info, customBoneToWorld);
> 
> 					if (!g_Vars.Chams.Enemy[0])
> 						g_Interfaces.modelRender->forceMaterialOverride(nullptr);
> 				}
> 
> 				if (g_Vars.Chams.Enemy[0]) {
> 
> 					material->ColorModulate(g_Vars.Color.Chams.Enemy);
> 					material->SetMaterialVarFlag(MaterialVar::IGNOREZ, false);
> 					g_Interfaces.modelRender->forceMaterialOverride(material);
> 				}
> 			}
> 			else if (g_Vars.Chams.Material == 2) {
> 
> 				material = pearlescent;
> 
> 				if (g_Vars.Chams.Enemy[1]) {
> 
> 					material->ColorModulate(g_Vars.Color.Chams.EnemyHidden);
> 					material->SetMaterialVarFlag(MaterialVar::IGNOREZ, true);
> 					g_Interfaces.modelRender->forceMaterialOverride(material);
> 
> 					g_Hooks.modelRender.getOriginal<void(__thiscall*)(ModelRender*, void*, void*, const ModelRenderInfo&, matrix3x4*)>(21)(g_Interfaces.modelRender, ctx, state, info, customBoneToWorld);
> 
> 					if (!g_Vars.Chams.Enemy[0])
> 						g_Interfaces.modelRender->forceMaterialOverride(nullptr);
> 				}
> 
> 				if (g_Vars.Chams.Enemy[0]) {
> 
> 					material->ColorModulate(g_Vars.Color.Chams.Enemy);
> 					material->SetMaterialVarFlag(MaterialVar::IGNOREZ, false);
> 					g_Interfaces.modelRender->forceMaterialOverride(material);
> 				}
> 			}
> 		}
> 		else if (entity->IsFriendly()) {
> 		
> 		}
> 	}
> }

glow broke

Hi Daniel. After adding a flat chams broke the glow of the style 1,2,3. Only one player is highlighted. Waiting for your fix :)
50749622-1c6bf980-1251-11e9-884c-451cd11b3a05

[Suggestion] Nearest hitbox

As title says, I would love if you were able to add a feature for aimbot to aimbot at closest hitbox for more legit gameplay. Instead of forcing it to aimbot f.ex head only.

Sorry for opening this as an issue, just close it if not interested
Have a great day :)

Antiobs

Can you add some antiobs button like its in aimware or something like that? This is best cheat I ever used but I want to record it :(

cannot open source file

When I compile the project, I've the following error :

cannot open source file : "D:\OSIRIS\OSIRIS\OSIRIS.CPP"
cannot open source file  : 'Config.cpp' : No such file or directory
cannot open source   file : 'Hacks\Aimbot.cpp' : No such file or directory
cannot open source file :   'Hacks\Chams.cpp' : No such file or directory
cannot open source file :   'Hacks\Glow.cpp' : No such file or directory
cannot open source file :   'Hacks\Triggerbot.cpp' : No such file or directory
cannot open source file :   'Hacks\Visuals.cpp' : No such file or directory
cannot open source file :   'Netvars.cpp' : No such file or directory
cannot open source file :   'Osiris.cpp' : No such file or directory
cannot open source file :   'GUI.cpp' : No such file or directory
cannot open source file :   'Hacks\Misc.cpp' : No such file or directory
cannot open source file :   'Hooks.cpp' : No such file or directory
cannot open source file :   'imgui\imgui.cpp' : No such file or directory
cannot open source file :   'imgui\imgui_demo.cpp' : No such file or directory
cannot open source file :   'imgui\imgui_draw.cpp' : No such file or directory
cannot open source file :   'imgui\imgui_impl_dx9.cpp' : No such file or directory
cannot open source file :   'imgui\imgui_impl_win32.cpp' : No such file or directory
cannot open source file :   'imgui\imgui_widgets.cpp' : No such file or directory
cannot open source file :   'Interfaces.cpp' : No such file or directory
cannot open source file :   'Memory.cpp' : No such file or directory

Can you help me please ?

Release dll

Can you push release version?
With push release of GitHub or push it to your code(not recommend but it can quick update release if you don't have time to push it).
Thank you.

Half Glow

Hi,
Enemies are painted half just under their bellies (belts) are painted.

What’s your discord?

I would love to chat and learn a little bit more about u. If u could add me that would be cool 66diablo#5471

Problem strcpy

its says something like _CTR_NO_WARNING or something like that

aimbot + Visuals ( No Visual Recoil ) + Recoil Control

Sometimes mouse is freez for a second and after go to left ... dont know why ... No Visual Recoil does not work. Recoil control working strange ... crosshair goes up ( when it shoud be down ). It will be very nice if you fix that

tiny aimbot problem

Hey man, just wanted to say that the aimbot doesn't work WITH a GLOCK only. I've tried every other pistol/heavy/smg/rifle/sniper etc.. Everything works, except the glock.

I've also tried to see if it's from the teams and if the aimbot will work with a glock on t or ct side but doesn't seem to work on both teams :D

Ask me anything you want if you need any information on your future fix.

Little Regards
Kyle

I can't build the Project

When I try to build the project I keep getting this error:

Severity Code Description Project File Line Suppression State
Error C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. Osiris c:\users\ich\onedrive\desktop\veiled\osiris-master\osiris\gui.cpp 140

What am I supposed to do?

Some Suggestions to Add

  • Options for Multiple & Custom Unique Config Names
  • Toggle-able Spectator List
  • Toggle-able Buy Log(What guns do players on the enemy team buy at the beginning of a round)
  • Custom Hitsounds & Hitmarkers
  • Ragebot & Antiaim?

A question, not an issue

Dear reader,

First I want to thank Daniel so much for the clean source. I really like the imgui!
I have one question though. I can't find out how to add an aimbot to the cheat. I added the aimbot tab and menu to the gui but now I need to let the buttons really do something when I enable it. I can't figure it out myself because I'm fairly new to C++. Can somebody give me a usefull advice or example?

Regards,

Mickje

HELP

Config.cpp
Aimbot.cpp
Chams.cpp
Glow.cpp
Triggerbot.cpp
Visuals.cpp
Netvars.cpp
Osiris.cpp
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Aimbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Hacks\Aimbot.cpp)
GUI.cpp
c:\users\user\desktop\osiris-master\osiris\sdk\Material.h(15): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Chams.cpp)
D:\GRY itp\Visual Studio MS\VC\include\fstream(13): note: see declaration of 'std' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Material.h(15): error C2065: 'string_view': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Chams.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Hacks\Chams.cpp)
Misc.cpp
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Visuals.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Hacks\Visuals.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Glow.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Glow.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Glow.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Hacks\Glow.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Hacks\Glow.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Glow.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Hacks\Glow.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Glow.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Memory.h(3): fatal error C1083: Cannot open include file: 'string_view': No such file or directory (compiling source file Hacks\Visuals.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Memory.h(3): fatal error C1083: Cannot open include file: 'string_view': No such file or directory (compiling source file Hacks\Glow.cpp)
Hooks.cpp
imgui.cpp
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\GUI.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\GUI.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2039: 'string_view': is not a member of 'std' (compiling source file Netvars.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C3646: 'getString': unknown override specifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2059: syntax error: ')' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(8): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(15): warning C4814: 'Cvar::getFloat': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(20): warning C4814: 'Cvar::getInt': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2039: 'string_view': is not a member of 'std' (compiling source file Netvars.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C3646: 'value': unknown override specifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: ')' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2143: syntax error: missing ';' before 'noexcept' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: 'noexcept' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(23): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(30): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(32): error C2382: 'Cvar::setValue': redefinition; different exception specifications (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): note: see declaration of 'Cvar::setValue' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2061: syntax error: identifier 'callVirtualFunction' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2238: unexpected token(s) preceding ';' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2143: syntax error: missing ';' before '*' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): error C2664: 'auto callVirtualFunction<float(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): error C2664: 'auto callVirtualFunction<void(__thiscall *)(void *,float)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void ' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2039: 'string_view': is not a member of 'std' (compiling source file Netvars.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2146: syntax error: missing ')' before identifier 'name' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C3646: 'name': unknown override specifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: ')' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: 'noexcept' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2143: syntax error: missing ';' before '{' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2447: '{': missing function header (old-style formal list?) (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2039: 'byte': is not a member of 'std' (compiling source file Netvars.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2146: syntax error: missing ';' before identifier 'pad' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2059: syntax error: '}' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2143: syntax error: missing ';' before '}' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(10): warning C4814: 'EntityList::getEntity': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(15): warning C4814: 'EntityList::getClientEntityFromHandle': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(20): warning C4814: 'EntityList::getHighestEntityIndex': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Netvars.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Netvars.cpp)
imgui_demo.cpp
c:\users\user\desktop\osiris-master\osiris\GUI.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file GUI.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\GUI.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Triggerbot.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Hacks\Triggerbot.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Triggerbot.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C3646: 'getString': unknown override specifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2059: syntax error: ')' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(8): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(15): warning C4814: 'Cvar::getFloat': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(20): warning C4814: 'Cvar::getInt': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Triggerbot.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C3646: 'value': unknown override specifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: ')' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2143: syntax error: missing ';' before 'noexcept' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: 'noexcept' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(23): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(30): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(32): error C2382: 'Cvar::setValue': redefinition; different exception specifications (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): note: see declaration of 'Cvar::setValue' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2061: syntax error: identifier 'callVirtualFunction' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2238: unexpected token(s) preceding ';' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2143: syntax error: missing ';' before '
' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): error C2664: 'auto callVirtualFunction<float(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): error C2664: 'auto callVirtualFunction<void(__thiscall *)(void *,float)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void ' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Triggerbot.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2146: syntax error: missing ')' before identifier 'name' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C3646: 'name': unknown override specifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: ')' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: 'noexcept' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2143: syntax error: missing ';' before '{' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2039: 'byte': is not a member of 'std' (compiling source file Hacks\Triggerbot.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2146: syntax error: missing ';' before identifier 'pad' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2059: syntax error: '}' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2143: syntax error: missing ';' before '}' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(10): warning C4814: 'EntityList::getEntity': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(15): warning C4814: 'EntityList::getClientEntityFromHandle': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(20): warning C4814: 'EntityList::getHighestEntityIndex': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Hacks\Triggerbot.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file GUI.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file GUI.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3646: 'path': unknown override specifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file GUI.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file GUI.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Hacks\Misc.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\hacks../Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
imgui_draw.cpp
imgui_impl_dx9.cpp
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2039: 'string_view': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C3646: 'getString': unknown override specifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2059: syntax error: ')' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(8): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(15): warning C4814: 'Cvar::getFloat': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(20): warning C4814: 'Cvar::getInt': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2039: 'string_view': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C3646: 'value': unknown override specifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: ')' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2143: syntax error: missing ';' before 'noexcept' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: 'noexcept' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(23): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(30): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(32): error C2382: 'Cvar::setValue': redefinition; different exception specifications (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): note: see declaration of 'Cvar::setValue' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2061: syntax error: identifier 'callVirtualFunction' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2238: unexpected token(s) preceding ';' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2143: syntax error: missing ';' before '
' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): error C2664: 'auto callVirtualFunction<float(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): error C2664: 'auto callVirtualFunction<void(__thiscall *)(void *,float)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void ' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2039: 'string_view': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2146: syntax error: missing ')' before identifier 'name' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C3646: 'name': unknown override specifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: ')' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: 'noexcept' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2143: syntax error: missing ';' before '{' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2447: '{': missing function header (old-style formal list?) (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2039: 'byte': is not a member of 'std' (compiling source file Osiris.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2059: syntax error: '}' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2143: syntax error: missing ';' before '}' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(10): warning C4814: 'EntityList::getEntity': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(15): warning C4814: 'EntityList::getClientEntityFromHandle': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(20): warning C4814: 'EntityList::getHighestEntityIndex': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Osiris.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Osiris.cpp)
imgui_impl_win32.cpp
imgui_widgets.cpp
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Misc.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C3646: 'getString': unknown override specifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2059: syntax error: ')' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(8): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(15): warning C4814: 'Cvar::getFloat': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(20): warning C4814: 'Cvar::getInt': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Misc.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C3646: 'value': unknown override specifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: ')' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2143: syntax error: missing ';' before 'noexcept' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: 'noexcept' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(23): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(30): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(32): error C2382: 'Cvar::setValue': redefinition; different exception specifications (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): note: see declaration of 'Cvar::setValue' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2061: syntax error: identifier 'callVirtualFunction' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2238: unexpected token(s) preceding ';' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2143: syntax error: missing ';' before '
' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): error C2664: 'auto callVirtualFunction<float(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): error C2664: 'auto callVirtualFunction<void(__thiscall *)(void *,float)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void ' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2039: 'string_view': is not a member of 'std' (compiling source file Hacks\Misc.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2146: syntax error: missing ')' before identifier 'name' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C3646: 'name': unknown override specifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: ')' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: 'noexcept' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2143: syntax error: missing ';' before '{' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2039: 'byte': is not a member of 'std' (compiling source file Hacks\Misc.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2146: syntax error: missing ';' before identifier 'pad' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2059: syntax error: '}' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2143: syntax error: missing ';' before '}' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(10): warning C4814: 'EntityList::getEntity': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(15): warning C4814: 'EntityList::getClientEntityFromHandle': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(20): warning C4814: 'EntityList::getHighestEntityIndex': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
Interfaces.cpp
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hacks\Misc.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Hacks\Misc.cpp)
Memory.cpp
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Hooks.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Hooks.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\GUI.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Hooks.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\GUI.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Hooks.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C2039: 'string_view': is not a member of 'std' (compiling source file Config.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Config.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Config.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3083: 'filesystem': the symbol to the left of a '::' must be a type (compiling source file Config.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C2039: 'path': is not a member of 'std' (compiling source file Config.cpp)
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std' (compiling source file Config.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C3646: 'path': unknown override specifier (compiling source file Config.cpp)
c:\users\user\desktop\osiris-master\osiris\Config.h(135): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Config.cpp)
Config.cpp(8): error C2039: 'string_view': is not a member of 'std'
D:\GRY itp\Visual Studio MS\VC\include\filesystem(27): note: see declaration of 'std'
Config.cpp(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Config.cpp(8): error C2146: syntax error: missing ')' before identifier 'name'
Config.cpp(8): error C3646: 'name': unknown override specifier
Config.cpp(8): error C2059: syntax error: ')'
Config.cpp(12): error C2065: 'path': undeclared identifier
Config.cpp(13): error C2065: 'path': undeclared identifier
Config.cpp(13): error C2228: left of '.string' must have class/struct/union
Config.cpp(13): error C2228: left of '.c_str' must have class/struct/union
Config.cpp(14): error C2065: 'path': undeclared identifier
Config.cpp(14): error C2065: 'name': undeclared identifier
Config.cpp(21): error C2065: 'path': undeclared identifier
Config.cpp(33): error C2065: 'path': undeclared identifier
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2039: 'string_view': is not a member of 'std' (compiling source file Interfaces.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C3646: 'getString': unknown override specifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2059: syntax error: ')' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(8): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(15): warning C4814: 'Cvar::getFloat': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(20): warning C4814: 'Cvar::getInt': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2039: 'string_view': is not a member of 'std' (compiling source file Interfaces.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C3646: 'value': unknown override specifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: ')' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2143: syntax error: missing ';' before 'noexcept' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: 'noexcept' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(23): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(30): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(32): error C2382: 'Cvar::setValue': redefinition; different exception specifications (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): note: see declaration of 'Cvar::setValue' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2061: syntax error: identifier 'callVirtualFunction' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2238: unexpected token(s) preceding ';' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2143: syntax error: missing ';' before '
' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): error C2664: 'auto callVirtualFunction<float(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): error C2664: 'auto callVirtualFunction<void(__thiscall *)(void *,float)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void ' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2039: 'string_view': is not a member of 'std' (compiling source file Interfaces.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2146: syntax error: missing ')' before identifier 'name' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C3646: 'name': unknown override specifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: ')' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: 'noexcept' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2143: syntax error: missing ';' before '{' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2447: '{': missing function header (old-style formal list?) (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2039: 'byte': is not a member of 'std' (compiling source file Interfaces.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2146: syntax error: missing ';' before identifier 'pad' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2059: syntax error: '}' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2143: syntax error: missing ';' before '}' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(10): warning C4814: 'EntityList::getEntity': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(15): warning C4814: 'EntityList::getClientEntityFromHandle': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(20): warning C4814: 'EntityList::getHighestEntityIndex': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Interfaces.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2039: 'string_view': is not a member of 'std' (compiling source file Memory.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C3646: 'getString': unknown override specifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(7): error C2059: syntax error: ')' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(8): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(15): warning C4814: 'Cvar::getFloat': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(20): warning C4814: 'Cvar::getInt': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2039: 'string_view': is not a member of 'std' (compiling source file Memory.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2146: syntax error: missing ')' before identifier 'value' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C3646: 'value': unknown override specifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: ')' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2143: syntax error: missing ';' before 'noexcept' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): error C2059: syntax error: 'noexcept' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(23): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(30): warning C4814: 'Cvar::setValue': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(32): error C2382: 'Cvar::setValue': redefinition; different exception specifications (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(22): note: see declaration of 'Cvar::setValue' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2061: syntax error: identifier 'callVirtualFunction' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(34): error C2238: unexpected token(s) preceding ';' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2143: syntax error: missing ';' before '
' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): error C2664: 'auto callVirtualFunction<float(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(14): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void *' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(19): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): error C2664: 'auto callVirtualFunction<void(__thiscall *)(void *,float)>(void *,int) noexcept': cannot convert argument 1 from 'const Cvar *const ' to 'void ' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(29): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2039: 'string_view': is not a member of 'std' (compiling source file Memory.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2146: syntax error: missing ')' before identifier 'name' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C3646: 'name': unknown override specifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: ')' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(37): error C2059: syntax error: 'noexcept' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2143: syntax error: missing ';' before '{' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(38): error C2447: '{': missing function header (old-style formal list?) (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2039: 'byte': is not a member of 'std' (compiling source file Memory.cpp)
D:\GRY itp\Visual Studio MS\VC\include\sstream(12): note: see declaration of 'std' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(42): error C2146: syntax error: missing ';' before identifier 'pad' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2059: syntax error: '}' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/Cvar.h(44): error C2143: syntax error: missing ';' before '}' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(10): warning C4814: 'EntityList::getEntity': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(15): warning C4814: 'EntityList::getClientEntityFromHandle': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(20): warning C4814: 'EntityList::getHighestEntityIndex': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void ' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(9): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): error C2664: 'auto callVirtualFunction<Entity
(__thiscall *)(void *,int)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(14): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): error C2664: 'auto callVirtualFunction<int(__thiscall *)(void *)>(void *,int) noexcept': cannot convert argument 1 from 'const EntityList *const ' to 'void *' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\SDK/EntityList.h(19): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(10): warning C4814: 'Vector::operator =': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(18): warning C4814: 'Vector::operator +': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(26): warning C4814: 'Vector::operator +=': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(34): warning C4814: 'Vector::operator -': in C++14 'constexpr' will not imply 'const'; consider explicitly specifying 'const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2556: 'auto Vector::operator -(const Vector &) noexcept const': overloaded function differs only by return type from 'Vector &Vector::operator -(const Vector &) noexcept const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(28): note: see declaration of 'Vector::operator -' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(37): error C2040: 'Vector::operator -': 'auto (const Vector &) noexcept const' differs in levels of indirection from 'Vector &(const Vector &) noexcept const' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2059: syntax error: 'return' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(38): error C2334: unexpected token(s) preceding '{'; skipping apparent function body (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ';' before '&' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(6): error C2065: 'x': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(7): error C2065: 'y': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(8): error C2065: 'z': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(9): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2065: 'x': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(14): error C2039: 'x': is not a member of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2065: 'y': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(15): error C2039: 'y': is not a member of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2065: 'z': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(16): error C2039: 'z': is not a member of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(17): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2065: 'x': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(22): error C2039: 'x': is not a member of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2065: 'y': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(23): error C2039: 'y': is not a member of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2065: 'z': undeclared identifier (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(24): error C2039: 'z': is not a member of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(3): note: see declaration of 'Vector' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): error C2440: 'return': cannot convert from 'const Vector' to 'Vector &' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(25): note: Conversion loses qualifiers (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(41): error C2143: syntax error: missing ',' before '&' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2803: 'operator -=' must have at least one formal parameter of class type (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2805: binary 'operator -=' has too few parameters (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2059: syntax error: '{' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2143: syntax error: missing ';' before '{' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(42): error C2447: '{': missing function header (old-style formal list?) (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C2143: syntax error: missing ';' before '&' (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (compiling source file Memory.cpp)
c:\users\user\desktop\osiris-master\osiris\sdk\Vector.h(49): fatal error C1903: unable to recover from previous error(s); stopping compilation (compiling source file Memory.cpp)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.