Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
cs-vampi/Output.cs
2009-01-29 23:44:45 +01:00

17 lines
302 B
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Output.cs created with MonoDevelop at 4:40 PM 1/29/2009
// @author mbirth
using System;
namespace vampi {
public abstract class Output {
public bool requestAbort = false;
public Output() {
}
public virtual void doOutput() {
}
}
}