| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace AtomicEngine
- {
- public class ScriptObject : AObject
- {
- public ScriptObject ()
- {
- nativeInstance = NativeCore.RegisterNative (csb_Atomic_CSScriptObject_Constructor(), this);
- }
- public void SendEvent(string eventType, Dictionary<string, object> eventData = null)
- {
- EventCore.SendEvent (this, eventType);
- }
- public void SubscribeToEvent(AObject sender, string eventType, AtomicEventDelegate function)
- {
- EventCore.SubscribeToEvent (this, sender, eventType, function);
- }
- public void SubscribeToEvent(string eventType, AtomicEventDelegate function)
- {
- EventCore.SubscribeToEvent (this, null, eventType, function);
- }
- [DllImport (Constants.LIBNAME, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
- private static extern IntPtr csb_Atomic_CSScriptObject_Constructor();
- }
- }
|