Skip to content

Commit

Permalink
Why didn't this commit
Browse files Browse the repository at this point in the history
Added version to YYTK's shared headers
  • Loading branch information
Archie-osu committed Dec 30, 2023
1 parent 8405a83 commit 4620f4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions YYToolkit/source/YYTK/Module Interface/Interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,9 @@ namespace YYTK
OUT short& Patch
)
{
Major = 3;
Minor = 1;
Patch = 0;
Major = YYTK_MAJOR;
Minor = YYTK_MINOR;
Patch = YYTK_PATCH;
}

AurieStatus YYTKInterfaceImpl::GetNamedRoutineIndex(
Expand Down
4 changes: 4 additions & 0 deletions YYToolkit/source/YYTK/Shared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
#ifndef YYTK_SHARED_H_
#define YYTK_SHARED_H_

#define YYTK_MAJOR 3
#define YYTK_MINOR 1
#define YYTK_PATCH 0

#include <Aurie/shared.hpp>
#include <FunctionWrapper/FunctionWrapper.hpp>
#include <d3d11.h>
Expand Down

0 comments on commit 4620f4f

Please sign in to comment.