Skip to content

Instantly share code, notes, and snippets.

@johnX9
Last active May 26, 2018 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnX9/3dc6250449016696e18a3fa3f939e57c to your computer and use it in GitHub Desktop.
Save johnX9/3dc6250449016696e18a3fa3f939e57c to your computer and use it in GitHub Desktop.
#include "Players.hpp"
namespace Oasis {
void Players::add(account_name account, string& username) {
// Action implementation body
}
void Players::update(account_name account, uint64_t level, int64_t healthPoints, int64_t energyPoints) {
// Action implementation body
}
void Players::getplayer(const account_name account) {
// Action implementation body
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment