| Revision: | 1114 | 
| Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 9 months ago) by iritscen | 
| File size: | 411 byte(s) | 
| Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. | 
| # | Content | 
|---|---|
| 1 | namespace 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 | } |