This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' Just a small class I wrote that allows simple integration of the use of flags | |
| ''' <summary> | |
| ''' Flag sys is a class for any program that allows integration of a flag based system | |
| ''' </summary> | |
| Public Class FlagSys | |
| Dim iFlag As Integer = 0 | |
| ''' <summary> | |
| ''' Constructor that automatically assigns a flag if a value is passed |
NewerOlder