mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
17 lines
265 B
C++
17 lines
265 B
C++
#include "pch.h"
|
|
#include "TEdgeBox.h"
|
|
|
|
#include "objlist_class.h"
|
|
|
|
TEdgeBox::TEdgeBox()
|
|
{
|
|
EdgeList = new objlist_class<TEdgeSegment>(0, 4);
|
|
FieldList = new objlist_class<field_effect_type>(0, 1);
|
|
}
|
|
|
|
TEdgeBox::~TEdgeBox()
|
|
{
|
|
delete EdgeList;
|
|
delete FieldList;
|
|
}
|