Initial commit

This commit is contained in:
Pyogenics
2025-01-26 09:32:24 +00:00
commit c0d6d88353
769 changed files with 85894 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package package_126
{
public class name_723
{
public static const NONE:name_723 = new name_723("NONE");
public static const RED:name_723 = new name_723("RED");
public static const BLUE:name_723 = new name_723("BLUE");
private var value:String;
public function name_723(value:String)
{
super();
this.value = value;
}
public function toString() : String
{
return this.value;
}
}
}