mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
16 lines
220 B
C++
16 lines
220 B
C++
#pragma once
|
|
#include "objlist_class.h"
|
|
|
|
class TZmapList : // TImageList, template?
|
|
public objlist_class
|
|
{
|
|
public:
|
|
TZmapList(int SizeInt, int growSize): objlist_class(SizeInt, growSize)
|
|
{
|
|
};
|
|
|
|
~TZmapList()
|
|
{
|
|
};
|
|
};
|