mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
12 lines
164 B
C#
12 lines
164 B
C#
using System;
|
|
using System.IO;
|
|
|
|
using ACE.Entity.Enum;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
public class BSPTree
|
|
{
|
|
public BSPNode RootNode { get; set; }
|
|
}
|
|
}
|