diff --git a/inc/hgl/type/object/ObjectRelation.h b/inc/hgl/type/object/ObjectRelation.h new file mode 100644 index 0000000..aa7c00c --- /dev/null +++ b/inc/hgl/type/object/ObjectRelation.h @@ -0,0 +1,18 @@ + +#pragma once + +#include +#include +#include + +namespace hgl +{ + /** + * 对象引用关系 + */ + struct ObjectRelation + { + tsl::robin_set follow_me; ///<引用自己的对象 + tsl::robin_set me_follow; ///<自己引用的对象 + };//struct ObjectRelation +}//namespace hgl