summaryrefslogtreecommitdiff
path: root/src/main/java/com/encrox/instanceddungeons/Exit.java
blob: e5423cd803cff39179cd6fda6e18c0821f6cde64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.encrox.instanceddungeons;

import com.sk89q.worldedit.BlockVector;

public class Exit {
	
	private Section section;
	private BlockVector relative;
	
	public Exit(Section section, BlockVector relative) {
		this.section = section;
		this.relative = relative;
	}
	
	public Section getSection() {
		return section;
	}
	
	public BlockVector getRelativeBlockVector() {
		return relative;
	}

}