Files
salmanoff/core/include/quale.h
T

21 lines
306 B
C++
Raw Normal View History

2024-09-04 11:24:30 +10:00
#ifndef _QUALE_H
#define _QUALE_H
class Quale
{
int intensity;
enum class Type
{
NEUTRAL,
/* Bounding refers to qualia such as tactile pressure which
* are mostly neutral but disclose information about the limits
* of the body.
**/
BOUNDING,
PAINFUL,
PLEASURABLE
} type;
};
#endif