| 1234567891011121314151617181920212223242526 |
- using System.Collections.Generic;
- namespace DotRecast.Recast
- {
- public class RcRegion
- {
- public int spanCount; // Number of spans belonging to this region
- public int id; // ID of the region
- public int areaType; // Are type.
- public bool remap;
- public bool visited;
- public bool overlap;
- public bool connectsToBorder;
- public int ymin, ymax;
- public List<int> connections;
- public List<int> floors;
- public RcRegion(int i)
- {
- id = i;
- ymin = 0xFFFF;
- connections = new List<int>();
- floors = new List<int>();
- }
- }
- }
|