using CSVReader; using ObjectScripts; using System.Collections.Generic; public class TestObjectHanlder : AbstractObjectHandler { public TestObjectHanlder() { UpdateRate = 5; GameVelocity = 1; Forward = true; } public override void ClearAll() { throw new System.NotImplementedException(); } public override void DeleteObject(DataObject dataObject) { throw new System.NotImplementedException(); } public override void Handle(List InputBuffer) { throw new System.NotImplementedException(); } }