15 lines
157 B
C++
15 lines
157 B
C++
|
#include "baseentity.h"
|
||
|
|
||
|
BaseEntity::BaseEntity()
|
||
|
{}
|
||
|
|
||
|
int BaseEntity::id() const
|
||
|
{
|
||
|
return _id;
|
||
|
}
|
||
|
|
||
|
void BaseEntity::setId(int newId)
|
||
|
{
|
||
|
_id = newId;
|
||
|
}
|