| 64 | } |
| 65 | |
| 66 | void InitSmashObject(ObjectInfo* object, int objectNumber) |
| 67 | { |
| 68 | object = &Objects[objectNumber]; |
| 69 | if (object->loaded) |
| 70 | { |
| 71 | object->Initialize = InitializeSmashObject; |
| 72 | object->collision = ObjectCollision; |
| 73 | object->control = SmashObjectControl; |
| 74 | object->SetHitEffect(true); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void InitKeyHole(ObjectInfo* object, int objectNumber) |
| 79 | { |
no test coverage detected