14 lines
227 B
C++
14 lines
227 B
C++
#pragma once
|
|
|
|
#include "roomentity.h"
|
|
|
|
class MoveableEntity : public RoomEntity
|
|
{
|
|
public:
|
|
virtual void Update(int delta_time) {};
|
|
int UpdatedTimes() { return updated_times_;}
|
|
|
|
protected:
|
|
int updated_times_ = 0;
|
|
};
|