我试图将对对象的引用分配给另一个变量
scene_t temp = &scene;
但是,我收到此错误消息
error: incompatible types when assigning to type 'scene_t' from type 'struct scene_t *'
我也尝试使用指针
scene_t temp = *scene
我得到了一个不同的错误
type argument of unary '*' (have 'scene_t')
我该怎么办?