ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/OniSplit/Akira/BspNode.cs
Revision: 1114
Committed: Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen
File size: 420 byte(s)
Log Message:
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File Contents

# Content
1 namespace Oni.Akira
2 {
3 internal abstract class BspNode<T>
4 where T : BspNode<T>
5 {
6 public readonly Plane Plane;
7 public readonly T BackChild;
8 public readonly T FrontChild;
9
10 protected BspNode(Plane plane, T backChild, T frontChild)
11 {
12 Plane = plane;
13 BackChild = backChild;
14 FrontChild = frontChild;
15 }
16 }
17 }