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