Skip to content
Snippets Groups Projects
Select Git revision
  • 038bd8354ca27c05d2c8a9cf835a2bb8ea4b005f
  • main default protected
  • fixing-controller-assets
  • Begin-scene-generation
  • Startup-UI
  • changing-urp-to-unity-builtin
  • Create-Working-Scene
7 results

MeshDimensionCalculator.cs

Blame
  • Activity.java 695 B
    import java.util.ArrayList;
    
    public abstract class Activity {
    //    private String type;
        private String title;
        protected ArrayList<Group> groups;
        private String description;
        private User host;
    
        public Activity (/*String type,*/ String title, String description, User host){
            /*this.type = type;*/
            this.title = title;
            this.description = description;
            this.host = host;
            groups = new ArrayList<Group>();
        }
    
        ArrayList<Group> getGroups(){
            return groups;
        }
    
        String getTitle(){
            return title;
        }
    
        User getHost(){
            return host;
        }
    
        String getDescription(){
            return description;
        }
    }