This class represents a type of bullet. @note Internally, these are the same IDs as flingy types in Broodwar. @see BulletTypes @ingroup TypeClasses
| 70 | /// @see BulletTypes |
| 71 | /// @ingroup TypeClasses |
| 72 | class BulletType : public Type<BulletType, BulletTypes::Enum::Unknown> |
| 73 | { |
| 74 | public: |
| 75 | /// @copydoc Type::Type(int) |
| 76 | constexpr BulletType(int id = BulletTypes::Enum::None) : Type(id) {} |
| 77 | }; |
| 78 | /// @ingroup Types |
| 79 | namespace BulletTypes |
| 80 | { |
nothing calls this directly
no outgoing calls
no test coverage detected