mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 21:59:53 +00:00
21 lines
253 B
C
21 lines
253 B
C
/**
|
|
* @file rs.h
|
|
*
|
|
* @note No functions are defined in this file.
|
|
*/
|
|
#ifndef RS_H
|
|
#define RS_H
|
|
|
|
#include "common.h"
|
|
#include <oid.h>
|
|
|
|
struct RSMG
|
|
{
|
|
OID oidRoot;
|
|
OID oidSM;
|
|
OID oidTriggerGoal;
|
|
OID oidUntriggerGoal;
|
|
};
|
|
|
|
#endif // RS_H
|