From c7ab7aa1b2e188361cc175af4f3d7bb7903e9e01 Mon Sep 17 00:00:00 2001 From: xenois Date: Sat, 10 Jun 2017 21:16:42 +0200 Subject: [PATCH] interface for collision contact it is used by IScripts to implement begincontact and endcontact --- src/com/uwsoft/editor/renderer/physics/Contacts.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/com/uwsoft/editor/renderer/physics/Contacts.java diff --git a/src/com/uwsoft/editor/renderer/physics/Contacts.java b/src/com/uwsoft/editor/renderer/physics/Contacts.java new file mode 100644 index 00000000..3b702b79 --- /dev/null +++ b/src/com/uwsoft/editor/renderer/physics/Contacts.java @@ -0,0 +1,10 @@ +package com.uwsoft.editor.renderer.physics; + +import com.badlogic.ashley.core.Entity; + +public interface Contacts { + +public void beginContact(Entity contact); + + public void endContact(Entity contact); +}