summaryrefslogtreecommitdiff
path: root/Simulator/include/modeling/Entity.h
blob: c8c5a7cd58311a1c3c1d4c89b17f81238ca2b0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
namespace Modeling
{
	class Entity
	{
	public:
		explicit Entity(int id);

		// The id of this entity in the database
		int id;
	};
}