mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 21:59:53 +00:00
19 lines
172 B
C
19 lines
172 B
C
/**
|
|
* @file sw.h
|
|
*
|
|
* @brief Scene world?
|
|
*/
|
|
#ifndef SW_H
|
|
#define SW_H
|
|
|
|
#include "common.h"
|
|
|
|
// todo Implement struct.
|
|
struct SW
|
|
{
|
|
};
|
|
|
|
extern SW *g_psw;
|
|
|
|
#endif // SW_H
|