Skip to content

Instantly share code, notes, and snippets.

View IvelleGames's full-sized avatar

Muruba IvelleGames

View GitHub Profile
@IvelleGames
IvelleGames / cserver.cpp
Last active October 26, 2017 20:13
cserver win
#include <cstdlib>
#include <cstring>
int main(int argc, char **argv) {
char str[1024];
#ifdef __linux__
strcpy(str, "/opt/google/chrome/chrome");
#endif
@IvelleGames
IvelleGames / swipe.monkey
Last active October 11, 2017 09:29
Cerberus-X Swipe example
Import mojo
Global SWIPE_QUICK_MS:Int = 500
Global TOUCH_RADIUS_THRESHOLD:Int = 15
Class Point
Public
Field x:Float
Field y:Float
Method New(xx:Float, yy:Float)