Skip to content

Commit

Permalink
Rename Hazel/Core/Core.h to Hazel/Core/Base.h (TheCherno#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
FriskyDev authored May 19, 2020
1 parent 18abce3 commit cfc4182
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Hazel/src/Hazel.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// For use by Hazel applications

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"

#include "Hazel/Core/Application.h"
#include "Hazel/Core/Layer.h"
Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/Application.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"

#include "Hazel/Core/Window.h"
#include "Hazel/Core/LayerStack.h"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/EntryPoint.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once
#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"

#ifdef HZ_PLATFORM_WINDOWS

Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/Input.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"
#include "Hazel/Core/KeyCodes.h"
#include "Hazel/Core/MouseCodes.h"

Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/Layer.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"
#include "Hazel/Core/Timestep.h"
#include "Hazel/Events/Event.h"

Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/LayerStack.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"
#include "Hazel/Core/Layer.h"

#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/Log.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"

#include <spdlog/spdlog.h>
#include <spdlog/fmt/ostr.h>
Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Core/Window.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "hzpch.h"

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"
#include "Hazel/Events/Event.h"

namespace Hazel {
Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Events/Event.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once
#include "hzpch.h"

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"

namespace Hazel {

Expand Down
2 changes: 1 addition & 1 deletion Hazel/src/Hazel/Renderer/Texture.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include <string>

#include "Hazel/Core/Core.h"
#include "Hazel/Core/Base.h"

namespace Hazel {

Expand Down

0 comments on commit cfc4182

Please sign in to comment.