1234567891011121314151617181920212223242526 |
- namespace KYFramework;
- public class Timer : Component
- {
- private int timeZone;
-
- public int TimeZone
- {
- get
- {
- return this.timeZone;
- }
- set
- {
- this.timeZone = value;
- dt = dt1970.AddHours(TimeZone);
- }
- }
-
- public DateTime dt1970;
- public DateTime dt;
-
- public long ServerMinusClientTime { get; set; }
- public long FrameTime;
- }
|