12345678910111213141516171819202122232425262728293031323334353637383940 |
- //---------------------------------------------------------------------------
- //
- // celement.cpp - This file contains the class declarations for the element pool
- //
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- //---------------------------------------------------------------------------
- // Include files
- #ifndef CELEMENT_H
- #include "celement.h"
- #endif
- #ifndef HEAP_H
- #include "heap.h"
- #endif
- #include <gameos.hpp>
- //---------------------------------------------------------------------------
- // Static Data Members
- //---------------------------------------------------------------------------
- // Class Element
- Element::Element (long _depth)
- {
- depth = _depth;
- drawNormal = TRUE;
- }
- //---------------------------------------------------------------------------
- // Class Element
- Element::Element (float _depth)
- {
- depth = _depth;
- drawNormal = TRUE;
- }
-
- //---------------------------------------------------------------------------
|