blob: dbfc24ced09a40ec8bf589e6ef7f4967f93467c9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#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);
};
|