aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/OPCODE/Opcode.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libraries/ode-0.9/OPCODE/Opcode.cpp65
1 files changed, 0 insertions, 65 deletions
diff --git a/libraries/ode-0.9/OPCODE/Opcode.cpp b/libraries/ode-0.9/OPCODE/Opcode.cpp
deleted file mode 100644
index c9fa104..0000000
--- a/libraries/ode-0.9/OPCODE/Opcode.cpp
+++ /dev/null
@@ -1,65 +0,0 @@
1///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2/*
3 * OPCODE - Optimized Collision Detection
4 * Copyright (C) 2001 Pierre Terdiman
5 * Homepage: http://www.codercorner.com/Opcode.htm
6 */
7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
8
9///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
10/**
11 * Main file for Opcode.dll.
12 * \file Opcode.cpp
13 * \author Pierre Terdiman
14 * \date March, 20, 2001
15 */
16///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
17
18/*
19 Finding a good name is difficult!
20 Here's the draft for this lib.... Spooky, uh?
21
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
32*/
33
34///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
35// Precompiled Header
36#include "Stdafx.h"
37
38bool Opcode::InitOpcode()
39{
40 Log("// Initializing OPCODE\n\n");
41// LogAPIInfo();
42 return true;
43}
44
45void ReleasePruningSorters();
46bool Opcode::CloseOpcode()
47{
48 Log("// Closing OPCODE\n\n");
49
50 ReleasePruningSorters();
51
52 return true;
53}
54
55#ifdef ICE_MAIN
56
57void ModuleAttach(HINSTANCE hinstance)
58{
59}
60
61void ModuleDetach()
62{
63}
64
65#endif