| 59 | void (*function) (); |
| 60 | |
| 61 | CTile (int index = 0, bool c = false, std::uint16_t l = 0x0000, |
| 62 | void (*f) () = NULL) |
| 63 | { |
| 64 | tileIndex = index; |
| 65 | isCollidable = c; |
| 66 | collisionFlags = l; |
| 67 | function = f; |
| 68 | }; |
| 69 | |
| 70 | ~CTile (){}; |
| 71 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected