Badgerati/Edison

View on GitHub
Edison.Engine/Events/EventDelegates.cs

Summary

Maintainability
A
0 mins
Test Coverage
/*
Edison is designed to be simpler and more performant unit/integration testing framework.

Copyright (c) 2015, Matthew Kelly (Badgerati)
Company: Cadaeic Studios
License: MIT (see LICENSE for details)
 */

using Edison.Framework;

namespace Edison.Engine.Events
{

    public delegate void TestResultEventHandler(TestResult result);

}