mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
11 lines
265 B
C
11 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
|