You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
//
|
|
// ############################################################################
|
|
// # G A M E.O.N.E - LOW LEVEL LIB V1.0 #
|
|
// ############################################################################
|
|
// Copyright (C) 2001 LEVEL ONE ENTERTAINMENT,
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 2.1 of the License, or any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
//
|
|
// Libhome <http://lowlevellib.sourceforge.net>
|
|
// Contact <mailto:alex.piko@l-e-v-e-l-o-n-e.com>
|
|
//
|
|
// Modification History:
|
|
// 03 Sep 2001, Alex Piko -- Generated 23:51:16 by Genitor OCS V4.50.915.2
|
|
//
|
|
//:-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DRV_GFX_SURFACE
|
|
#define _DRV_GFX_SURFACE
|
|
|
|
#include "../driver.h"
|
|
|
|
class CGfxObject : public s_texture
|
|
{
|
|
public:
|
|
TxU32 colorkey; // device color
|
|
bool ckEnable; //
|
|
};
|
|
|
|
|
|
#endif
|
|
|