source: OniSplit/Akira/RoomAdjacency.cs@ 1114

Last change on this file since 1114 was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 411 bytes
Line 
1namespace Oni.Akira
2{
3 internal class RoomAdjacency
4 {
5 private readonly Room adjacentRoom;
6 private readonly Polygon ghost;
7
8 public RoomAdjacency(Room room, Polygon ghost)
9 {
10 this.adjacentRoom = room;
11 this.ghost = ghost;
12 }
13
14 public Room AdjacentRoom => adjacentRoom;
15
16 public Polygon Ghost => ghost;
17 }
18}
Note: See TracBrowser for help on using the repository browser.