Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 5ea531e

Browse files
committed
added common runestoneBase file
1 parent 1b28e94 commit 5ea531e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
function RunestoneBase () { // Basic parent stuff
2+
3+
}
4+
5+
RunestoneBase.prototype.logBookEvent = function (info) {
6+
console.log("logging event " + this.divid);
7+
};
8+
9+
RunestoneBase.prototype.logRunEvent = function (info) {
10+
console.log("running " + this.divid);
11+
};

0 commit comments

Comments
 (0)