game2006/server/gameserver/roomentity.h
2022-12-13 19:17:46 +08:00

14 lines
184 B
C++

#pragma once
#include "entity.h"
class RoomEntity : public Entity
{
public:
Room* room = nullptr;
a8::Attacher xtimer_attacher;
virtual void Initialize() override;
};