| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace BansheeEngine
- {
- public class Debug
- {
- public static void Log(string message)
- {
- // TODO - Not implemented
- }
- public static void LogWarning(string message)
- {
- // TODO - Not implemented
- }
- }
- }
|