Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
626 B

using UnityEngine;
/*
-----------------------
InspectorNoteAttribute()
-----------------------
*/
public class InspectorNoteAttribute : PropertyAttribute
{
public readonly string header;
public readonly string message;
public InspectorNoteAttribute(string header, string message = "")
{
this.header = header;
this.message = message;
}
}
/*
-----------------------
InspectorCommentAttribute()
-----------------------
*/
public class InspectorCommentAttribute : PropertyAttribute {
public readonly string message;
public InspectorCommentAttribute( string message = "" ) {
this.message = message;
}
}