summaryrefslogtreecommitdiff
path: root/client/activity-demo/src/com/example/piztor/Controller.java
diff options
context:
space:
mode:
Diffstat (limited to 'client/activity-demo/src/com/example/piztor/Controller.java')
-rw-r--r--client/activity-demo/src/com/example/piztor/Controller.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/client/activity-demo/src/com/example/piztor/Controller.java b/client/activity-demo/src/com/example/piztor/Controller.java
deleted file mode 100644
index 6e55581..0000000
--- a/client/activity-demo/src/com/example/piztor/Controller.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.example.piztor;
-
-import java.io.Serializable;
-import android.content.Intent;
-
-public class Controller {
- String userToken;
- Running run;
-
- Controller() {
- run = null;
- userToken = null;
- }
-
- void setRun(Running run) {
- this.run = run;
- }
-
- void recieveInfo(Myrespond r) {
- if (r.wrong != null) {
- System.out.println(r.wrong);
- } else {
- System.out.println("yeal!");
- }
- }
-
- void recieveLocation(double x, double y) {
- run.v.drawLocation(x, y);
- }
-}