mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 21:59:53 +00:00
15 lines
122 B
C
15 lines
122 B
C
/**
|
|
* @file bomb.h
|
|
*/
|
|
#ifndef BOMB_H
|
|
#define BOMB_H
|
|
|
|
#include "common.h"
|
|
|
|
struct BOMB
|
|
{
|
|
// ...
|
|
};
|
|
|
|
#endif // BOMB_H
|