AutobiographicMemory.AM.BaseEvent.BaseEvent C# (CSharp) Method

BaseEvent() protected method

protected BaseEvent ( uint id, Name eventName, ulong timestamp ) : System.Collections.Generic
id uint
eventName Name
timestamp ulong
return System.Collections.Generic
            protected BaseEvent(uint id, Name eventName, ulong timestamp)
            {
                Id = id;
                Type = eventName.GetNTerm(1);
                Subject = eventName.GetNTerm(2);
                Timestamp = timestamp;
                EventName = eventName;
            }