/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
App/include/util/HitTestFilter.h
22 строки
398 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#pragma once namespace RBX { class Primitive; // Fail: Stop the hit test - don't bore any further down // Ignore: Keep testing // Hit: Found something class HitTestFilter { public: typedef enum Result { STOP_TEST, IGNORE_PRIM, INCLUDE_PRIM} Result; virtual Result filterResult(const Primitive* testMe) const = 0; virtual ~HitTestFilter() {} }; } // namespace