コード例 #1
0
        public PlaceVoxelAct(
            VoxelHandle Location,
            CreatureAI Agent,
            ResourceAmount Resource) :
            base(Agent)
        {
            this.Location = Location;
            this.Resource = Resource;

            Name = "Build DestinationVoxel " + Location.ToString();
        }
コード例 #2
0
        public PlaceVoxelAct(
            VoxelHandle Location,
            CreatureAI Agent,
            String ResourceBlackboardName,
            String VoxelType) :
            base(Agent)
        {
            this.Location = Location;
            this.ResourceBlackboardName = ResourceBlackboardName;
            this.VoxelType = VoxelType;

            Name = "Build DestinationVoxel " + Location.ToString();
        }