Page Menu
Home
Phabricator (Chris)
Search
Configure Global Search
Log In
Files
F134858
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
2 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/assets/audio/collect.mp3 b/assets/audio/collect.mp3
new file mode 100644
index 0000000..5bd6c6a
Binary files /dev/null and b/assets/audio/collect.mp3 differ
diff --git a/card.cpp b/card.cpp
new file mode 100644
index 0000000..2169c5d
--- /dev/null
+++ b/card.cpp
@@ -0,0 +1,6 @@
+#include "card.h"
+
+Card::Card()
+{
+
+}
diff --git a/card.h b/card.h
new file mode 100644
index 0000000..4fd2c49
--- /dev/null
+++ b/card.h
@@ -0,0 +1,14 @@
+#ifndef CARD_H
+#define CARD_H
+
+
+class Card
+{
+public:
+ Card();
+ int elementNumber;
+ int type;
+ int amount;
+};
+
+#endif // CARD_H
diff --git a/pagan_board.pro b/pagan_board.pro
index 7116411..c17cbc0 100644
--- a/pagan_board.pro
+++ b/pagan_board.pro
@@ -1,69 +1,73 @@
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
CONFIG += c++11
SOURCES += main.cpp \
game.cpp \
tilemap.cpp \
selector.cpp \
playerhud.cpp \
boardelem.cpp \
boardelems.cpp \
textureholder.cpp \
hover.cpp \
guiwindow.cpp \
purchaseguielem.cpp \
guichoosebuilding.cpp \
rounddice.cpp \
guirounddice.cpp \
grouphud.cpp \
animation.cpp \
animatedsprite.cpp \
character.cpp \
data.cpp \
rotateelem.cpp \
boarddiamond.cpp \
boarddiamondseq.cpp \
elem.cpp \
- soundfx.cpp
+ soundfx.cpp \
+ card.cpp \
+ pile.cpp
LIBS += -lsfml-window -lsfml-system -lsfml-graphics -lsfml-audio
DESTDIR = ../build_release_pagan_board
assets.path = $${DESTDIR}/assets
assets.files = assets/*
INSTALLS += assets
HEADERS += \
game.h \
tilemap.h \
selector.h \
playerhud.h \
boardelem.h \
boardelems.h \
textureholder.h \
hover.h \
guiwindow.h \
purchaseguielem.h \
guichoosebuilding.h \
elemsdescription.h \
rounddice.h \
guirounddice.h \
grouphud.h \
data.h \
animation.h \
animatedsprite.h \
character.h \
rotateelem.h \
boarddiamond.h \
boarddiamondseq.h \
elem.h \
- soundfx.h
+ soundfx.h \
+ card.h \
+ pile.h
OTHER_FILES += \
CREDITS.md
QMAKE_CXXFLAGS += -std=gnu++0x
diff --git a/pile.cpp b/pile.cpp
new file mode 100644
index 0000000..1292bf5
--- /dev/null
+++ b/pile.cpp
@@ -0,0 +1,6 @@
+#include "pile.h"
+
+Pile::Pile()
+{
+
+}
diff --git a/pile.h b/pile.h
new file mode 100644
index 0000000..224896c
--- /dev/null
+++ b/pile.h
@@ -0,0 +1,11 @@
+#ifndef PILE_H
+#define PILE_H
+
+
+class Pile
+{
+public:
+ Pile();
+};
+
+#endif // PILE_H
\ No newline at end of file
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Jun 18, 9:03 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
71655
Default Alt Text
(2 KB)
Attached To
Mode
R82 deerportal
Attached
Detach File
Event Timeline