summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2MatterArrayList.h
blob: 2e71e0142fd3d0deb256f077c7c328674a03d627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include "common.h"
#include "LArray.h"

class AFX_CLASS_EXPORT T2MatterArrayList : public LArray {
public:
	T2MatterArrayList();
	virtual ~T2MatterArrayList();
	void Add(T2MatterArray* inArray);
	unsigned int GetItemCount();
	T2MatterArray* GetItemAt(long inIndex);
	T2Matter* FindUnusedMatter(unsigned int inJobType, unsigned int inValidRange);
};