EmptyCSScriptText.txt 382 B

1234567891011121314151617181920
  1. namespace bs
  2. {
  3. public class NewComponent : ManagedComponent
  4. {
  5. private void OnInitialize()
  6. {
  7. // TODO: Add code that needs to be called when Component is created
  8. }
  9. private void OnUpdate()
  10. {
  11. // TODO: Add code that needs to be called every frame
  12. }
  13. private void OnDestroy()
  14. {
  15. // TODO: Add code that needs to be called when Component is destroyed
  16. }
  17. }
  18. }