Cosmetic: Premake script fixed to avoid adding outest.cpp to the project being generated
[ode.git] / OPCODE / Opcode.cpp
blob02075b9b4fb6ab64ebf0e46b3bd0af76a8e01b83
1 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2 /*
3 * OPCODE - Optimized Collision Detection
4 * Copyright (C) 2001 Pierre Terdiman
5 * Homepage: http://www.codercorner.com/Opcode.htm
6 */
7 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
9 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
10 /**
11 * Main file for Opcode.dll.
12 * \file Opcode.cpp
13 * \author Pierre Terdiman
14 * \date March, 20, 2001
16 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
19 Finding a good name is difficult!
20 Here's the draft for this lib.... Spooky, uh?
22 VOID? Very Optimized Interference Detection
23 ZOID? Zappy's Optimized Interference Detection
24 CID? Custom/Clever Interference Detection
25 AID / ACID! Accurate Interference Detection
26 QUID? Quick Interference Detection
27 RIDE? Realtime Interference DEtection
28 WIDE? Wicked Interference DEtection (....)
29 GUID!
30 KID ! k-dop interference detection :)
31 OPCODE! OPtimized COllision DEtection
34 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
35 // Precompiled Header
36 #include "Stdafx.h"
38 using namespace Opcode;
41 bool Opcode::InitOpcode()
43 //Log("// Initializing OPCODE\n\n");
44 // LogAPIInfo();
46 return true;
49 bool Opcode::CloseOpcode()
51 //Log("// Closing OPCODE\n\n");
53 return true;
57 #ifdef ICE_MAIN
59 void ModuleAttach(HINSTANCE hinstance)
63 void ModuleDetach()
67 #endif