mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-10 04:21:02 +00:00
12 lines
265 B
C
12 lines
265 B
C
|
#ifndef _INCLUDE_STORAGE_H
|
||
|
#define _INCLUDE_STORAGE_H
|
||
|
|
||
|
|
||
|
// this is only for user and place objects really -
|
||
|
// an inline wrapping around a mapping access, just in case
|
||
|
// i should one day decide to change how data is kept in memory
|
||
|
#define v(KEY) _v[KEY]
|
||
|
|
||
|
|
||
|
#endif
|