EventRecorder.java revision cfd74d65d832137e20e193c960802afba73b5d38
1package com.replica.replicaisland;
2
3public class EventRecorder extends BaseObject {
4	private Vector2 mLastDeathPosition = new Vector2();
5
6	@Override
7	public void reset() {
8		// TODO Auto-generated method stub
9
10	}
11
12	synchronized void setLastDeathPosition(Vector2 position) {
13		mLastDeathPosition.set(position);
14	}
15
16	synchronized Vector2 getLastDeathPosition() {
17		return mLastDeathPosition;
18	}
19
20}
21