source: OniSplit/Akira/RoomBspNode.cs@ 1183

Last change on this file since 1183 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: 259 bytes
Line 
1namespace Oni.Akira
2{
3 internal class RoomBspNode : BspNode<RoomBspNode>
4 {
5 public RoomBspNode(Plane plane, RoomBspNode backChild, RoomBspNode frontChild)
6 : base(plane, backChild, frontChild)
7 {
8 }
9 }
10}
Note: See TracBrowser for help on using the repository browser.