Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.
|
1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using UnityEngine;
-
- class ActionLog : Action
- {
- string message;
-
- public ActionLog(string tgtMessage)
- : base()
- {
- message = tgtMessage;
- }
-
- public override void start()
- {
- base.start();
- Debug.Log(message);
- }
- }
|