Dwarrowdelf.VisionMap.this C# (CSharp) Method

this() public method

public this ( IntVector3 p ) : bool
p IntVector3
return bool
        public bool this[IntVector3 p]
        {
            get { return this[p.X, p.Y, p.Z]; }
            set { this[p.X, p.Y, p.Z] = value; }
        }

Same methods

VisionMap::this ( int x, int y, int z ) : bool