Ejemplo n.º 1
0
 public MovieOptions()
 {
     Fps               = 21;
     Width             = 300;
     Height            = 300;
     Version           = 7;
     Background        = "#FFFFFF";
     TestMovieBehavior = TestMovieBehavior.NewTab;
 }
Ejemplo n.º 2
0
		public MovieOptions()
		{
			Fps = 21;
			Width = 300;
			Height = 300;
			Version = 7;
			Background = "#FFFFFF";
			TestMovieBehavior = TestMovieBehavior.NewTab;
		}
Ejemplo n.º 3
0
        public event ChangedHandler ClasspathChanged; // inner operation changed the classpath

        public Project(string path, CompilerOptions compilerOptions)
        {
            this.path            = path;
            this.compilerOptions = compilerOptions;

            TestMovieBehavior = TestMovieBehavior.Default;

            classpaths     = new PathCollection();
            compileTargets = new PathCollection();
            hiddenPaths    = new HiddenPathCollection();
            libraryAssets  = new AssetCollection(this);

            InputPath      = "";
            OutputPath     = "";
            PreBuildEvent  = "";
            PostBuildEvent = "";
        }
Ejemplo n.º 4
0
        public event ChangedHandler ClasspathChanged; // inner operation changed the classpath

		public Project(string path, CompilerOptions compilerOptions)
		{
			this.path = path;
            this.compilerOptions = compilerOptions;

            TestMovieBehavior = TestMovieBehavior.Default;

			classpaths = new PathCollection();
			compileTargets = new PathCollection();
			hiddenPaths = new HiddenPathCollection();
            libraryAssets = new AssetCollection(this);

            InputPath = "";
			OutputPath = "";
			PreBuildEvent = "";
			PostBuildEvent = "";
		}