blob: c171d4c7bf93ba78bc6394cb2a3f4d8c8e560be6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef T2DLL_T2FLOORPTRLIST_H
#define T2DLL_T2FLOORPTRLIST_H
#include "../common.h"
#include "T2EquipPtrList.h"
class AFX_CLASS_EXPORT T2FloorPtrList : public T2EquipPtrList {
public:
T2FloorPtrList(T2TenantArrayList* inList);
virtual ~T2FloorPtrList();
int CalcDistance(int inIndexA, int inIndexB);
};
#endif
|