#ifndef __OLIST_H__
#define __OLIST_H__

#include "model.h"

class OList
{
private:
	int nObjects;
	Model *model[256];

public:
	OList() { nObjects = 0; }
	void addobject(Model *m);
	void render();
};

#endif