Skip to content

Commit 5124015

Browse files
committed
switch to hpp
1 parent 90fd181 commit 5124015

11 files changed

+15
-15
lines changed

src/CCKeyboardDispatcher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "include.h"
1+
#include "include.hpp"
22

33
#if !defined(DISABLE_KEYBOARD)
44
$execute{

src/DialogLayer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "DialogLayer.h"
2-
#include "FLAlertLayer.h"
1+
#include "DialogLayer.hpp"
2+
#include "FLAlertLayer.hpp"
33

44
bool DeltaruneDialogLayer::init(DialogObject* dialogObject, CCArray* objectsOriginal, int p2) {
55
CCArray* objects = CCArray::create();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "include.h"
1+
#include "include.hpp"
22

33
class $modify(DeltaruneDialogLayer, DialogLayer) {
44
struct Fields {

src/FLAlertLayer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "FLAlertLayer.h"
2-
#include "DialogLayer.h"
3-
#include "ImageNode.h"
1+
#include "FLAlertLayer.hpp"
2+
#include "DialogLayer.hpp"
3+
#include "ImageNode.hpp"
44

55
bool blockKeys = false;
66

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "include.h"
2-
#include "ImageNode.h"
1+
#include "include.hpp"
2+
#include "ImageNode.hpp"
33

44
class $modify(DeltaruneAlertLayer, FLAlertLayer) {
55
struct Fields {

src/ImageNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "ImageNode.h"
1+
#include "ImageNode.hpp"
22

33
ImageNode* ImageNode::create() {
44
auto ret = new ImageNode();

src/ImageNode.h renamed to src/ImageNode.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "include.h"
3+
#include "include.hpp"
44

55
class ImageNode : public cocos2d::CCNode {
66
public:

src/PurchaseItemPopup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "PurchaseItemPopup.h"
1+
#include "PurchaseItemPopup.hpp"
22

33
void DeltarunePurchaseItemPopup::handlePurchasePopup() {
44
auto& quickPopup = m_fields->quickPopup;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "include.h"
1+
#include "include.hpp"
22

33
class $modify(DeltarunePurchaseItemPopup, PurchaseItemPopup) {
44
struct Fields {

src/changeDesign.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "include.h"
2-
#include "FLAlertLayer.h"
1+
#include "include.hpp"
2+
#include "FLAlertLayer.hpp"
33

44
template<class T>
55
bool vectorContains(std::vector<T>& vector, T value) {

0 commit comments

Comments
 (0)